@charset "UTF-8";

body {
  font-family: 'Noto Serif JP', serif;
}
a:focus {
  outline: none;
}

.selecter_wrap { 
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}
.selecter_wrap.active {
  display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.selecter_wrap .item {
  position: relative;
}
.selecter_wrap .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -ms-transition: all 1s;

}
.selecter_wrap .item:nth-child(1):before {
  background: rgba(0,35,149,.4);
}
.selecter_wrap .item:nth-child(3):before {
  background: rgba(237,41,57,.4);
}
.selecter_wrap .item {
  overflow: hidden;
}
.selecter_wrap .item > * {
  position: relative;
  z-index: 2;
  text-align: center;
}
.selecter_wrap a.item {
  color: #787878;
}
.selecter_wrap .item h2 img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.selecter_wrap .item strong {
  display: block;
}
.selecter_wrap .item:not(.blank) {
  color: #fff;
}
.selecter_wrap .item.blank {
  font-family: 'Times New Roman','Noto Serif JP','serif','sans-serif';
  font-weight: 700;
}
.item.blank p {
  background: rgba(101,99,97,.5);
}



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

  .wrapper {
    padding-bottom: 50px;
  }
  .selecter_wrap {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .selecter_wrap .item {
    width: 100%;
    height: calc(100vh / 3);
    height: calc(100dvh / 3);
    min-height: calc(100vh / 3);
    min-height: calc(100dvh / 3);
    transition: all .5s;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
  }
  .selecter_wrap .item > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    width: 100%;
    height: 100%;
  }
  .selecter_wrap .item h2 {
    width: 35.4%;
    max-height: calc(100% - 6em);
  }
  .selecter_wrap .item strong {
    margin: 1em auto 0;
  }
  .selecter_wrap .item[data-select="deuxieme"] h2 strong  {
    margin-bottom: -0.5em;
  }

  .selecter_wrap .item h2 img {
    height: 70%;
    margin: auto;
  }
  .selecter_wrap .item p {
    font-size: 1.4rem;
  }
  .selecter_wrap.move {}
  .selecter_wrap.move > *.selected {
    height: 100vh;
    min-height: 100vh;
  }
  .selecter_wrap.move > *.selected:before {
    background: #fff;
  }
  .selecter_wrap.move > *:not(.selected) {
    height: 0;
    min-height: 0;
  }
  .item.blank h1 {
    font-size: 2.8rem;
  }
  .item.blank p {
    display: none;
  }





}

@media screen and (min-width: 768px) { /*  pc  */

  .wrapper {
    padding-bottom: 78px;
  }
  .selecter_wrap {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .selecter_wrap .item {
    width: calc(100% / 3);
    cursor: pointer;
    transition: all 1s;
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
  }
  .selecter_wrap .item > * {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    width: 100%;
    height: 100vh;
  }
  .selecter_wrap .item h2 img  {
    width: 70%;
    margin-bottom: 1em;
  }
  .selecter_wrap .item[data-select="deuxieme"] h2 img  {
    margin-bottom: 0;
  }
  .selecter_wrap .item strong {
    margin-bottom: .5em;
  }

  .selecter_wrap .item:nth-child(1):hover:before,
  .selecter_wrap .item:nth-child(3):hover:before {
    filter:blur(10vw);
    -webkit-filter:blur(10vw);
  }

  .item.blank {
    cursor: default;
  }
  .item.blank p {
    width: 160px;
    line-height: 24px;
    text-align: center;
    position: absolute;
    bottom: 60px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    cursor: pointer;
  }
  .item.blank:hover p {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
  }

  .selecter_wrap.move {}
  .selecter_wrap.move > *.selected {
    width: 100%;
  }
  .selecter_wrap.move > *.selected:before {
    background: #fff;
  }
  .selecter_wrap.move > *:not(.selected) {
    width: 0;
  }
  .selecter_wrap.move > *:not(.selected) * {}





}




/* -----------------------------------------------
    contents_wrap
----------------------------------------------- */
.contents_wrap article {
  display: none;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  transition: all 1.8s;
  -webkit-transition: all 1.8s;
  -ms-transition: all 1.8s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.contents_wrap article.active {
  filter: blur(0);
  -webkit-filter: blur(0);
  position: relative;
}

.contents_wrap article .mv_wrap {
  position: relative;
  /* height: 100vh; */
  display: block;
}

.mv_wrap .swiper-container {
  width: 100%;
  /* height: 100vh; */
  aspect-ratio: 1 / .8;
}
.mv_wrap .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.mv_wrap .mv_cap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
}
.mv_wrap .mv_cap strong {
  font-weight: normal;
  position: absolute;
  text-shadow:
  -1px -1px 5px rgba(0,0,0,.8),
  -1px 0px 5px rgba(0,0,0,.8),
  -1px 1px 5px rgba(0,0,0,.8),
  0px -1px 5px rgba(0,0,0,.8),
  0px 1px 5px rgba(0,0,0,.8),
  1px -1px 5px rgba(0,0,0,.8),
  1px 0px 5px rgba(0,0,0,.8),
  1px 1px 5px rgba(0,0,0,.8);
  letter-spacing: .2em;
}


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

  .contents_wrap article .mv_wrap {
    aspect-ratio: 1 / .8;
    /* height: 100vh; */
    /* height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s; */
    overflow: hidden;
  }
  .mv_wrap .mv_cap {
    aspect-ratio: 1 / .8;
    /* height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh; */
    transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
  }
  .mv_cap strong {
    font-size: 1.8rem;
    line-height: 2;
    text-shadow: 0 0 5px rgb(0 0 0);
  }
  .levin .mv_cap strong {
    bottom: 2.8%;
  }
  .levin .swiper-slide[data-swiper-slide-index="0"] {
    background-image:url(../images/levin/mv_01_sp.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="1"] {
    background-image:url(../images/levin/mv_02_sp.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="2"] {
    background-image:url(../images/levin/mv_03_sp.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="3"] {
    background-image:url(../images/levin/mv_04_sp.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="4"] {
    background-image:url(../images/levin/mv_05_sp.jpg);
  }
  .deuxieme .mv_cap strong {
    top: 21.8%;
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="0"] {
    background-image:url(../images/deuxieme/mv_01_sp.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="1"] {
    background-image:url(../images/deuxieme/mv_02_sp.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="2"] {
    background-image:url(../images/deuxieme/mv_03_sp.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="3"] {
    background-image:url(../images/deuxieme/mv_04_sp.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="4"] {
    background-image:url(../images/deuxieme/mv_05_sp.jpg);
  }

}

@media screen and (min-width: 768px) { /*  pc  */

  .mv_wrap .mv_cap {
    height: 100%;
  }
  .mv_cap strong {
    font-size: 22px;
    line-height: 2.72;
  }
  .contents_wrap article .mv_wrap {

  height: 100vh;
  }
.mv_wrap .swiper-container {

  height: 100vh;
}

  .levin .mv_cap strong {
    bottom: 2.8%;
  }
  .levin .swiper-slide[data-swiper-slide-index="0"] {
    background-image:url(../images/levin/mv_01.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="1"] {
    background-image:url(../images/levin/mv_02.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="2"] {
    background-image:url(../images/levin/mv_03.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="3"] {
    background-image:url(../images/levin/mv_04.jpg);
  }
  .levin .swiper-slide[data-swiper-slide-index="4"] {
    background-image:url(../images/levin/mv_05.jpg);
  }

  .deuxieme .mv_cap strong {
    top: 21.8%;
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="0"] {
    background-image:url(../images/deuxieme/mv_01.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="1"] {
    background-image:url(../images/deuxieme/mv_02.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="2"] {
    background-image:url(../images/deuxieme/mv_03.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="3"] {
    background-image:url(../images/deuxieme/mv_04.jpg);
  }
  .deuxieme .swiper-slide[data-swiper-slide-index="4"] {
    background-image:url(../images/deuxieme/mv_05.jpg);
  }

}









/* -----------------------------------------------
    info_bar
----------------------------------------------- */

.info_bar {
  width: 100%;
  right: 0;
  left: 0;
  z-index: 2;
}
.fv .info_bar {
  display: none;
}
.info_bar ul {
  display: none;
}
.info_bar > a {
  position: absolute;
  background: rgba(0,0,0,.2);
  color: #fff;
  display: block;
  height: 100%;
  text-align: center;
}
.info_bar li a {
  display: block;
}
.info_bar li a i {
  font-style: normal;
}
.levin .info_bar {
  background: #811A49;
}
.deuxieme .info_bar {
  background: #360D34;
}
body.scroll .info_bar {
  position: fixed;
  box-shadow: 0 0 10px 5px rgb(255 255 255 / 30%);
}

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

  .info_bar {
    position: absolute;
    top: 100vh;
  }
  .levin .info_bar ul.levin,
  .deuxieme .info_bar ul.deuxieme {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .info_bar ul {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 60px);
    margin: 0 auto 0 5px;
  }
  .info_bar li {
    width: calc((100% / 2) - 5px);
    padding: 7px 0;
  }
  .info_bar li a {
    background: #F0ECDE;
    color: #707070;
    font-size: 1.6rem;
    width: 100%;
    height: 46px;
    line-height: 1.4;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    border: 5px double #B2B0A6;
  }
  .info_bar li a i {
    display: block;
    font-size: .8rem;
    margin-top: 0.3em;
  }

  .info_bar > a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4rem;
    right: 0;
    bottom: 5px;
  }

  body.scroll .info_bar {
    bottom: 0;
    top: auto;
  }


}

@media screen and (min-width: 768px) { /*  pc  */

  .info_bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1ch;
    top: 100vh;
    width: 100% !important;
    position: absolute;
  }
  body.scroll .info_bar {
    top: calc(100vh - 78px);
  }
  .info_bar > a {
    width: 78px;
    height: 78px;
    line-height: 78px;
    font-size: 16px;
  }
  .levin .info_bar ul.levin,
  .deuxieme .info_bar ul.deuxieme {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .info_bar ul {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /* -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; */
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* max-width: calc(100% - 78px); */
    max-width: 850px;
    width: 66%;
  }
  .info_bar li {
    margin: 14px auto;  
    width: 34.8%;
    /* margin: 14px 8%; */
  }
  .info_bar li a {
    background: url(../images/common/button.svg) 50% 50% / contain no-repeat;
    color: #707070;
    font-size: 16px;
    /* width: 296px; */
    max-width: 296px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
  }
  .info_bar li a i {
    font-style: normal;
    margin-left: 1em;
  }
  .info_bar > a {
    right: 0;
    bottom: 0;
  }


}









/* -----------------------------------------------
    main_contents
----------------------------------------------- */
.lead_wrap {
  display: block;
  text-align: center;
}
.lead_wrap h1 {
  font-weight: normal;  
}
.lead_wrap h1 strong {
  display: block;
  font-weight: normal;
}
.lead_wrap p {}
.levin .lead_wrap {
  background: -moz-linear-gradient(top,  rgba(255,251,244,0) 0%, rgba(253,248,248,1) 100%);
background: -webkit-linear-gradient(top,  rgba(255,251,244,0) 0%,rgba(253,248,248,1) 100%);
background: linear-gradient(to bottom,  rgba(255,251,244,0) 0%,rgba(253,248,248,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fffbf4', endColorstr='#fdf8f8',GradientType=0 );

}

.levin .lead_wrap h1 {
  color: #701740;
}
.deuxieme .lead_wrap {
  background: -moz-linear-gradient(top,  rgba(255,251,244,0) 0%, rgba(255,251,244,1) 100%);
  background: -webkit-linear-gradient(top,  rgba(255,251,244,0) 0%,rgba(255,251,244,1) 100%);
  background: linear-gradient(to bottom,  rgba(255,251,244,0) 0%,rgba(255,251,244,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00fffbf4', endColorstr='#fffbf4',GradientType=0 );
}
.deuxieme .lead_wrap h1 {
  color: #360D34;
}


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

  .lead_wrap {
    padding-bottom: 50%;
  }
  .lead_wrap .inner_wrap {
    padding-top: 30%;
  }
  .lead_wrap h1 {
    font-size: 1.6rem;
    letter-spacing: .5em;
  }
  .lead_wrap h1 strong {
    font-size: 2.0rem;
    margin-top: 15px;
    letter-spacing: .2em;
  }
  .lead_wrap img.logo {
    margin: 50px auto 36px;
    width: 148px;
  }
  .lead_wrap p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .16em;
  }

}

@media screen and (min-width: 768px) { /*  pc  */

  .lead_wrap {
    padding-bottom: 134px;
  }
  .lead_wrap .inner_wrap {
    padding-top: 146px;
  }


  .lead_wrap h1 {
    font-size: 16px;
    letter-spacing: .5em;
  }
  .lead_wrap h1 strong {
    font-size: 20px;
    margin-top: 15px;
    letter-spacing: .2em;
  }
  .lead_wrap img.logo {
    margin: 50px auto 36px;
    width: 148px;
  }
  .lead_wrap p {
    font-size: 14px;
    line-height: 2.8;
    letter-spacing: .16em;
  }




}







.frame_head {
  text-align: center;
}
.frame_head h2 {
  border-style: solid;
  color: #fff;
  display: inline-block;
}
.frame_head h2 strong {
  font-weight: normal;
  display: block;
}
.frame_head h2 span {
  display: block;
}

.levin .frame_head h2 {
  border-color: #8D114A;
}
.levin .frame_head strong {
  background: #152D7B;
}
.deuxieme .frame_head h2 {
  /* border-color: #152D7B; */
  border-color: #003e21;
}
.deuxieme .frame_head strong {
  /* background: #8D114A; */
  background: #012a79;
}

.frame_head + p {
  text-align: center;
}
.cuisine_wrap .frame_head {
  margin-top: 0;
}

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

  .frame_head {
    margin: 20% auto 16%;
  }
  .frame_head h2 {
    border-width: 3px;
    padding: 2px;
    /* min-width: 80%; */
    min-width: 12em;
  }
  .frame_head h2 strong {
    font-size: 2rem;
    padding: 10px 0 7px;
    letter-spacing: .18em;
  }
  .frame_head h2 span {
    font-size: 1.2rem;
    margin-top: 5px;
    letter-spacing: .03em;
  }
  .frame_head + p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .1em;
    margin-bottom: 20%;
  }
  .cuisine_wrap {
    padding-top: 20%;
  }

}

@media screen and (min-width: 768px) { /*  pc  */

  .frame_head {
    margin: 70px auto 64px;
  }
  .frame_head h2 {
    border-width: 5px;
    padding: 4px;
    min-width: 268px;
  }
  .frame_head h2 strong {
    font-size: 20px;
    padding: 10px 0 7px;
    letter-spacing: .18em;
  }
  .frame_head h2 span {
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: .03em;
  }
  .frame_head + p {
    font-size: 14px;
    line-height: 2.8;
    letter-spacing: .16em;
    margin-bottom: 70px;
  }
  .cuisine_wrap {
    padding-top: 70px;
  }


}



.scroll_img {
  width: 100%;
  overflow: hidden;
  background-size: auto 100%;
  background-repeat: repeat;
  background-position-x: 0;
  -webkit-animation: scroll_img 90s linear infinite;
  animation: scroll_img 90s linear infinite;
}
.scroll_img_v2 {
 -webkit-animation: scroll_img 60s linear infinite;
  animation: scroll_img 60s linear infinite;
}
.scroll_img_v3 {
 -webkit-animation: scroll_img 45s linear infinite;
  animation: scroll_img 45s linear infinite;
}
@-webkit-keyframes scroll_img {
  0%{background-position-x:0}
  100%{background-position-x:-3438px}
}@keyframes scroll_img {
  0%{background-position-x:0}
  100%{background-position-x:-3438px}
}

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

  .scroll_img {
    margin-bottom: 40%;
    height: 104px;
  }
  .espase_wrap {
    padding-bottom: 30%;
  }
  .espase_wrap .scroll_img {
    margin-bottom: 0;
  }

}

@media screen and (min-width: 768px) { /*  pc  */

  .scroll_img {
    margin-bottom: 160px;
    height: 225px;
  }
  .espase_wrap {
    padding-bottom: 90px;
  }
  .espase_wrap .scroll_img {
    margin-bottom: 0;
  }

}



/* -----------------------------------------------
    menu
----------------------------------------------- */
.menu_wrap {
  background: #000;
}
.menu_wrap .menu_button {
  text-align: center;
}
.menu_button h2 {
  margin: auto;
  position: relative;
  font-weight: normal;
}
.menu_button h2:before,
.menu_button h2:after {
  content: "";
  position: absolute;
  background: #ffffff;
  transition: all .5s;
  -webkit-transition: all .5s;
  -ms-transition: all .5s;
}
.menu_wrap .menu_button#lunch {
  /* background: rgba(216,82,30,.3); */
  background: #BBB7A5;
}
.menu_wrap .menu_button#cafe {
  /* background: rgba(215,216,30,.3); */
  background: #867468;
}
.menu_wrap .menu_button#dinner {
  /* background: rgba(0,79,125,.3); */
  background: #922A3E;
}
.menu_wrap .menu_item > img {
  width: 100%;
}
.menu_wrap .menu_button h2 p {
  color: #fff;
}
.menu_wrap .menu_button p em {
  display: block;
  line-height: 1.4;
}
.frame_wrap {}
.frame_wrap {
 border-image-repeat: round;
 position: relative;
 text-align: center;
}
.frame_wrap:after {
  content: "";
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
}
.frame_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.frame_wrap > * {
  position: relative;
}
.frame_wrap h3 {
  color: #fff;
  text-align: center;
  position: relative;
  display: inline-block;
  font-weight: normal;
  border-radius: 50vh;
}
.frame_wrap h3:before,
.frame_wrap h3:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.frame_wrap h3:before {
  left: 1em;
}
.frame_wrap h3:after {
  right: 1em;
}
.border_head {
  text-align: left;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.border_head:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-repeat: repeat-x; 
}
.frame_wrap h4 {
  text-align: center;
  position: relative;
  display: inline-block;
  font-weight: normal;
}
.frame_wrap h4:before,
.frame_wrap h4:after {
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.frame_wrap h4 + span {
  display: block;
}
.menu_list_fl {
  margin-right: auto;
  margin-left: auto;
}
p.att {
  display: inline-block;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.deuxieme p.att {
  text-indent: 0;
  padding-left: 0;
}

.levin .bg_color {
  background: #FDF8F8;
}
.levin .menu_wrap .menu_item {
  background: url(../images/levin/menu_bg.jpg) 0 0 / contain repeat;
  overflow: hidden;
}
.levin .frame_wrap {
  border-image-source: url("../images/levin/menu_line.svg");
  color: #811A49;
}
.levin .frame_wrap:before {
  background: #fff;
}
.levin .frame_wrap:after {
  background: url("../images/levin/menu_symbol.svg");
}
.levin .frame_wrap h3 {
  background: #811A49;
}
.levin .frame_wrap h4:before,
.levin .frame_wrap h4:after {
  background: #811A49;
}
.levin .frame_wrap .set {
  margin-right: auto;
  margin-left: auto;
}
.levin .frame_wrap .set .menu_list_item {
  border-style: solid;
  border-color: #811A49;
  position: relative;
}
.levin .set .menu_list_item * {
  position: relative;
}
.levin .set .menu_list_item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #811A49;
  background: #FFF7F7;
}
.levin .frame_wrap .soft_drink,
.levin .frame_wrap .bottle_vine {
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background: #FFF7F7;
}
.levin .border_head:after {
  background-image: linear-gradient(to right, #811A49 10px, transparent 10px);
}
.levin .frame_wrap .bottle_vine * {
  padding: .5em 4em;
  display: inline-block;
  text-align: left;
}
.levin .frame_wrap .bottle_vine strong {
  font-size: 1rem;
}


.deuxieme .bg_color {
  background: #FFFBF4;
}
.deuxieme .menu_wrap {
  background: url(../images/deuxieme/menu_bg.jpg) 0 0 / contain repeat;
  overflow: hidden;
  position: relative;
}
.deuxieme .menu_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: -moz-linear-gradient(top,  rgba(255,251,244,1) 0%, rgba(255,251,244,0) 100%);
background: -webkit-linear-gradient(top,  rgba(255,251,244,1) 0%,rgba(255,251,244,0) 100%);
background: linear-gradient(to bottom,  rgba(255,251,244,1) 0%,rgba(255,251,244,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fffbf4', endColorstr='#00fffbf4',GradientType=0 );

  }
.deuxieme .frame_wrap {
  border-image-source: url("../images/deuxieme/menu_line.svg?");
  color: #360D34;
}
.deuxieme .frame_wrap:before {
  background: #FFFBF4;
}
.deuxieme .frame_wrap:after {
  background: url("../images/deuxieme/menu_symbol.svg");
}
.deuxieme .frame_wrap h3 {
  background: #360D34;
}

.deuxieme .frame_wrap h4:before,
.deuxieme .frame_wrap h4:after {
  background: #360D34;
}
.deuxieme .border_head:after {
  background-image : linear-gradient(to right, #360D34 10px, transparent 10px);
}
.deuxieme .menu_list_item img {
  margin: 0.5em auto 2em;
  max-width: 90%;
}


.frame_wrap .frame_att {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  text-align: left;
}


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

  .menu_wrap .menu_button {
    padding: 5% 0;
  }
  .menu_wrap .menu_button h2 {
    font-size: 1.5rem;
    width: 90%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;    
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    border-top: 4px double #ffffff;
    border-bottom: 4px double #ffffff;
    padding: 3% 0;
  }
  .menu_button h2:before,
  .menu_button h2:after {
    width: 2em;
    height: 1px;
    right: 1em;
  }
  .menu_button h2:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
}
  .menu_button.open h2:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  .menu_wrap .menu_button h2 i {
    /* width: 3em; */
    width: 2.4em;
    margin-right: 0.5em;
  }
  .menu_wrap .menu_button h2 p {
    font-size: 1.6rem;
    min-width: 12em;
    letter-spacing: .06em;
    margin-right: 2em;
  }
  .menu_wrap .menu_button h2 span {
    font-size: 1.2rem;
    margin-top: .5em;
    display: block;
  }
  .menu_wrap .menu_button p em {
    font-size: 1.3rem;
    margin-top: 0.5em;
    display: block;
  }
  .frame_wrap {
    border: 20px solid #def;
    border-image-slice: 60;
    margin: 20% auto;
    padding: 5% 0;
  }
  .frame_wrap:after {
    width: 3.2em;
    height: 3em;
    top: -4.4em;
    background-size: cover !important;
  }
  .frame_wrap h3 {
    font-size: 1.6rem;
    line-height: 2;
    padding: 0 2.52em;
    margin-bottom: 10%;
  }
  .frame_wrap h4 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .frame_wrap h4:before,
  .frame_wrap h4:after {
    width: 1.6em;
  }
  .frame_wrap h4:before {
    right: calc(100% + 1em);
  }
  .frame_wrap h4:after {
    left: calc(100% + 1em);
  }
  .frame_wrap.food {
    margin: 20% auto 30%;
  }
  .frame_wrap .frame_att {
    top: calc(100% + 120px);
  }
  .levin .frame_wrap .frame_att {
    top: calc(100% + 30px);
  }

  .frame_wrap .menu_list_item {
    margin-bottom: 10%;
    position: relative;
  }
  .frame_wrap *:not(h3):not(h4):not(.price) {
    font-size: 1.3rem;
    line-height: 1.76;
  }
  .frame_wrap h4 + *:not(span) {
    margin-top: 1em;
  }
  .frame_wrap .price {
    font-size: 1.4rem;
    line-height: 1.769;
    margin-top: 0.6em;
  }
  .dinner .frame_wrap .price {
    margin-top: 0;
  }
  .border_head {
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 648px;
    width: 96%;
  }
  .border_head:after {
    width: 100%;
    top: 18px;
  }
  .border_head:after {
    background-size: 14px 2px;
    background-position: left bottom;
    height: 2px;
    margin-left: 1.5em;
  }
  .menu_list_fl {
    width: 96%;
    margin-bottom: 30%;
  }
  .menu_list_fl .menu_list_item {
    position: relative;
  }
  .menu_list_item.sp_not_border {
    margin-bottom: -10%;
    padding-bottom: 0 !important;
  }
  .menu_list_item:not(.sp_not_border):after,
  .menu_list_container .menu_list_item:after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .food .menu_list_fl .menu_list_item {
    padding-bottom: 30%;
  }
  .food .menu_list_fl .menu_list_item:not(:last-child) {
    margin-bottom: 30%;
  }

  .menu_img {
    margin-bottom: 30%;
  }
  .menu_img p {
    margin-top: 5%;
  }
  .menu_list_container .menu_list_item {
    margin-bottom: 25%;
    padding-bottom: 30%;
    position: relative;
  }
  .menu_list_item.chaudes {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .menu_list_item.chaudes:after {
    content: none;
  }


  .levin .frame_wrap:not(.food) .menu_list_fl {
    margin-bottom: 0;
  }
  .levin .frame_wrap .set {
    margin-bottom: 30%;
    display: block;
    width: 96%;
  }
  .levin .frame_wrap .set .menu_list_item {
    /* width: 46.58%; */
    padding: 7% 0;
    border-width: 2px;
    margin-bottom: 10%;
  }
  .levin .set .menu_list_item * {
  }
  .levin .set .menu_list_item:before {
    margin: 4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  .levin .frame_wrap .soft_drink,
.levin .frame_wrap .bottle_vine {
    width: 96%;
    padding: 3em 7% 2em;
  }
  .levin .frame_wrap .soft_drink h3 {
    position: absolute;
    left: 1em;
    top: -16px;
  }
  .levin .frame_wrap .soft_drink ul {
    width: 96%;
  }
  .levin .frame_wrap .soft_drink ul li {
    text-align: left;
  }
  .levin .frame_wrap .bottle_vine {
    margin-top: 10%;
    padding: 2em 5%;
  }
  .levin .frame_wrap .bottle_vine * {
    padding:.5em 0; 
  }
  .levin .frame_wrap .bottle_vine strong {
    font-size: 1.3rem;
  }

  .levin .food .menu_list_item:after,
  .menu_list_container .menu_list_item:after {
    background-image: url(../images/levin/menu_border.svg);
    height: 12px;
  }

  .deuxieme .menu_wrap:before {
    height: 50px;
  }
  .deuxieme .menu_list_item.menu_border:after,
  .deuxieme .food .menu_list_item:after {
    background-image: url(../images/deuxieme/menu_border.svg);
    height: 12px;
  }

}

@media screen and (min-width: 768px) { /*  pc  */

  .menu_wrap > *:last-child .inner_wrap {
    margin-bottom: 120px;
  }
  .menu_wrap .menu_button {
    padding: 23px 0;
    transition: all .3s;
    -ms-transition: all .3s;
    -webkit-transition: all .3s;
  }
  .menu_wrap .menu_button {
    padding: 23px 0;
    position: relative;
    cursor: pointer;
  }
  .menu_wrap .menu_button:hover {
    opacity: .8;
  }
  .menu_wrap .menu_button h2 {
    font-size: 15px;
    max-width: 778px;
    width: 90%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu_button h2:before,
  .menu_button h2:after {
    width: 56px;
    height: 1px;
    right: 0;
  }
  .menu_button h2:after { 
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
  }
  .menu_button.open h2:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
  }
  .menu_wrap .menu_button h2 p {
    /* font-size: 15px; */
    font-size: 18px;
    max-width: 470px;
    margin: 0 auto 0 11%;
    width: 80%;
    letter-spacing: .06em;
    border-top: 4px double #ffffff;
    border-bottom: 4px double #ffffff;
    /* padding: 20px 0; */
    padding: 0.7em 0;
  }
  .menu_wrap .menu_button h2 span {
    /* font-size: 12px;
    margin-left: 12%; */
    font-size: 15px;
    margin-left: 8%;
  }
  .menu_wrap .menu_button p em {
    font-size: 14px;
    margin-top: .5em;
  }



  .frame_wrap {
    border: 60px solid #def;
    border-image-slice: 60;
    margin: 86px auto;
    padding: 2px 0;
    max-width: 856px;
  }
  .frame_wrap:after {
    width: 42px;
    height: 40px;
    top: -88px;
  }
  .frame_wrap h3 {
    font-size: 16px;
    line-height: 34px;
    padding: 0 2.52em;
    min-width: 196px;
    margin-bottom: 43px;
  }
  .frame_wrap h4 {
    font-size: 14px;
  }
  .frame_wrap h4:before,
  .frame_wrap h4:after {
    width: 32px;
  }
  .frame_wrap h4:before {
    right: calc(100% + 1.7em);
  }
  .frame_wrap h4:after {
    left: calc(100% + 1.7em);
  }
  .frame_wrap.food {
    margin: 86px auto 140px;
  }
  .frame_wrap .frame_att {
    top: calc(100% + 100px);
  }
  .levin .frame_wrap .frame_att {
    top: calc(100% + 80px);
  }


  .frame_wrap .menu_list_item {
    margin-bottom: 44px;
  }
  .frame_wrap *:not(h3):not(h4):not(.price) {
    font-size: 13px;
    line-height: 1.76;
  }
  .frame_wrap h4 + *:not(span) {
    margin-top: 1em;
  }

  .frame_wrap .price {
    font-size: 14px;
    line-height: 1.769;
    margin-top: 0.6em;
  }
  .dinner .frame_wrap .price {
    margin-top: 0;
  }
  .border_head {
    text-align: left;
    position: relative;
    overflow: hidden;
    max-width: 648px;
    width: 96%;
  }
  .border_head:after {
    width: 100%;
    top: 18px;
  }
  .border_head:after {
    background-size: 14px 2px;
    background-position: left bottom;
    height: 2px;
    margin-left: 1.5em;
  }



  .menu_list_fl {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 690px;
    width: 96%;
    margin-bottom: 24px;
  }
  .menu_list_fl.no_stretch {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .menu_list_fl .menu_list_item {
    width: 50%;
    position: relative;
  }
  .menu_list_item.menu_border:after {
    content: "";
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 90%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
  }
  .food .menu_list_fl .menu_list_item {
    padding-bottom: 110px;

  }

  .menu_img {
    margin-bottom: 110px;
  }
  .menu_img p {
    margin-top: 10px;
  }


  .menu_list_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: auto auto auto auto auto; */
    grid-template-rows: min-content min-content min-content min-content min-content min-content;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "bieres vine"
      "cidre sho-chu"
      "highball sho-chu"
      "highball cocktails"
      "perrier cocktails"
      "chaudes cocktails"
      "chaudes froide"
      "chaudes ."
      /*"chaudes ."*/;
  }
  .bieres { grid-area: bieres; }
  .vine { grid-area: vine; }
  .cidre { grid-area: cidre; }
  .sho-chu { grid-area: sho-chu; }
  .highball { grid-area: highball; }
  .cocktails { grid-area: cocktails; }
  .perrier { grid-area: perrier; }
  .froide { grid-area: froide; }
  .chaudes {
    grid-area: chaudes;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .menu_list_container .menu_list_item {
    position: relative;
    padding-bottom: 68px;
    margin-bottom: 56px;
  }



  .levin .frame_wrap .set {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 674px;
    width: 96%;
    margin-bottom: 24px;
  }
  .levin .frame_wrap .set .menu_list_item {
    width: 46.58%;
    padding: 18px 0;
    border-width: 2px;
  }
  .levin .set .menu_list_item * {
  }
  .levin .set .menu_list_item:before {
    margin: 4px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }
  .levin .frame_wrap .soft_drink,
.levin .frame_wrap .bottle_vine {
    max-width: 674px;
    width: 96%;
    margin-bottom: 24px;
    padding: 32px 0 18px;
  }
  .levin .frame_wrap .soft_drink h3 {
    position: absolute;
    left: 1em;
    top: -16px;
  }
  .levin .frame_wrap .soft_drink ul {
   	display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    width: 96%;
    max-width: 436px;
  }
  .levin .frame_wrap .soft_drink ul li {
    width: 40%;
    text-align: left;
  }
  .levin .menu_list_item.menu_border:after {
    background-image: url(../images/levin/menu_border.svg);
    height: 12px;
  }


  .deuxieme .menu_wrap:before {
    height: 70px;
  }
  .deuxieme .menu_list_item.menu_border:after {
    background-image: url(../images/deuxieme/menu_border.svg);
    height: 12px;
  }
  /* .deuxieme .frame_wrap:not(.food) .menu_list_fl:last-child,
  .deuxieme .frame_wrap:not(.food) .menu_list_fl:last-child .menu_list_item { */
  .deuxieme .frame_wrap:not(.food) .menu_list_fl:last-child {
    margin-bottom: 0;
  }

  .deuxieme p.att {
    margin-top: -2em;
    margin-bottom: 2em;
    /* width: 100%;
    text-align: center; */
    text-align: left;
    display: inline-block;
    margin-right: auto;
    margin-left: auto;
  }


}















/* -----------------------------------------------
    info_wrap
----------------------------------------------- */
.info_wrap {
  color: #fff;
}
.info_wrap .inner_wrap {
  margin-right: auto;
  margin-left: auto;
}
.info_item h3 {
  border-bottom-color: #fff;
  border-bottom-style: solid;
  font-weight: normal;
}
.info_item strong {
  font-weight: normal;
}
.info_wrap a {
  color: #fff;
  text-decoration: underline;
}
.info_item strong.holiday {
  padding-top: 1em;
  display: inline-block;
}



.levin .info_wrap {
  background: #811A49;
}
.deuxieme .info_wrap {
  background: #360D34;
}




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

  .info_wrap {
    padding: 15% 0;
  }
  .info_wrap .inner_wrap {
    /* display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1080px; */
    width: 90%;
  }
  .info_wrap .info_item {
    /* max-width: 310px;
    width: 28.8%; */
  }
  .info_item * {
    line-height: 1.83;
  }
  .info_item:not(:last-child) {
    margin-bottom: 10%;
  }
  .info_item h3 {
    border-bottom-width: 4px;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5%;
    padding-bottom: 2%;
  }
  .info_item strong {
    font-size: 1.4rem;
  }
  .info_item p {
    font-size: 1.2rem;
  }
  

}

@media screen and (min-width: 768px) { /*  pc  */

  .info_wrap {
    padding: 96px 0 80px;
  }
  .info_wrap .inner_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    max-width: 1080px;
    width: 96%;
  }
  .info_wrap .info_item {
    max-width: 310px;
    width: 28.8%;
  }
  .info_item * {
    line-height: 1.83;
  }
  .info_item:not(:last-child) {
    margin-right: 6.8%;
  }
  .info_item h3 {
    border-bottom-width: 6px;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 16px;
  }
  .info_item strong {
    font-size: 14px;
  }
  .info_item p {
    font-size: 12px;
  }



}
