@charset "utf-8";


body {
  position: relative;
}

* {
  box-sizing: border-box;
}

/* ---------- header_nav ---------- */
.header_nav {
  display: flex;
  justify-content: space-between;
}

/*.header_nav li img{margin-bottom: -7px;display: block;}*/
.header_nav li img {
  margin-bottom: -7px;
}

.header_nav li:first-child img,
.header_nav li:last-child img {
  margin-bottom: 0;
}

.header_nav li:first-child {
  text-align: left;
}

.header_nav li:last-child {
  text-align: right;
}


@media screen and (max-width: 767px) {
  #nav-toggle {
    position: fixed;
    top: 0;
    right: 20px;
    z-index: 101;
    background: url(/assets/img/icon_trigger_on.png?2019) no-repeat 50% 50% / contain;
  }

  #nav-toggle img {
    width: 50px;
  }

  #top-head {
    display: none;
  }

  #top-head.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    display: block;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    height: 100vh;
  }

  #top-head.open+#nav-toggle img {
    opacity: 0;
  }


  #top-head .nav {
    margin-top: 16%;
    display: block;
    text-align: center;
  }

  #top-head .nav li {
    display: block;
    margin: 8% auto 0;
    width: 90%;
    font-size: 16px;
    font-weight: bold;
  }

  #top-head .nav li a {
    display: inline-block;
    text-decoration: underline;
    position: relative;
    color: #fff;
  }

  #top-head .nav li a:after {
    content: '';
    display: block;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -5px;
  }

  #top-head .nav li a img {
    height: 30px;
    width: auto;
  }

}




/* ---------- mainVisual ---------- */
.mainVisual {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 570px;
}

.mainVisual h1 {
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-recommend .mainVisual {
  background-image: url(/assets/img/menu/bg_mv.png);
}

#page-shop .mainVisual {
  background-image: url(/assets/img/shop/bg_mv.png?2019);
  background-size: unset;
}

#page-takeout .mainVisual {
  background-image: url(/assets/img/takeout/bg_mv.png);
}

#page-takeout .mainVisual h1 {
  height: auto;
}

.mainVisual .sec_read {
  background: rgba(0, 0, 0, .6);
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

#page-shop .mainVisual .sec_read {
  background: rgba(255, 204, 0, .9);
  height: auto;
}

#page-shop .mainVisual .sec_read .inner {
  padding: 50px 0;
}

#page-recommend .mainVisual .sec_read {
  display: block;
  height: auto;
}

#page-takeout .mainVisual .sec_read {
  display: block;
  height: auto;
}

#page-index .pagetop {
  border: 1px solid #f00;
}

@media screen and (max-width: 1000px) {
  /*
	.mainVisual li:first-child,.mainVisual li:last-child {width: 20%;}
	.mainVisual li:nth-child(2) {width: 10%;}
	.mainVisual li:nth-child(3) {width: 14%;}
	.mainVisual li:nth-child(4) {width: 14%;}
	.mainVisual li:nth-child(5) {width: 10%;}
	.mainVisual li:nth-child(6) {width: 10%;}
*/
}

/* ---------- sec_nav ---------- */
.sec_nav {
  background: url(/assets/img/bg_nav.jpg) repeat top center;
  border-bottom: 10px solid #ffcc00;
}

.sec_nav li {
  float: left;
  /*width: calc(100% / 6);*/
  width: 16.66%;
}

.sec_nav li a {
  display: block;
  border-right: 1px solid #aaa;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.sec_nav li a:hover {
  background: #ffcb00;
}

.sec_nav li a:after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 9px 9px 0;
  border-color: #d70c19 transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 15px;
}

.sec_nav ul:after {
  content: "";
  display: block;
  clear: both;
}


/* ---------- wrap_con ---------- */
.wrap_con {
  clear: both;
  background: #c00009 url(/assets/img/bg_wrapper.png);
  overflow: hidden;
}

.wrap_con .inner {
  background: #f0e1ca url(/assets/img/bg_menu.jpg);
  box-sizing: border-box;
  border-left: solid 5px #b10009;
  border-right: solid 5px #b10009;
  box-shadow: 0px 0px 0px 5px #e9ba00, 0px 0px 0px 10px #5f0000;
}

/* ---------- footer ---------- */
.footer {
  color: #fff;
  border-top: 10px solid #ffcc00;
}

.footer .inner {
  padding-top: 40px;
}

.footer ul {
  display: table;
  margin: 40px 0;
  width: 100%;
  font-size: 16px;
}

.footer ul li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 .5em;
}

.footer ul li:first-child,
.footer ul li:last-child {
  padding: 0;
}

.footer ul li:first-child {
  text-align: left;
}

.footer ul li:last-child {
  text-align: right;
}

.footer ul li a {
  color: #fff;
  text-decoration: underline !important;
}

.footer ul li a:hover {
  text-decoration: none !important;
}

.footer p.copyright {
  padding: 30px 0;
}


/* ---------- home ---------- */
#page-index .footer {
  border-top: none;
}

#page-index .mainVisual video {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

#page-index .mainVisual h1 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  text-align: center;
  font-size: 0;
}

#page-index .sec_read {
  position: relative;
  background: url(/assets/img/bg_wrapper.png);
  border-top: 10px #ffcc00 solid;
}

#page-index .sec_read h1 {
  position: absolute;
  top: -90px;
  left: 0;
  right: 0;
}

#page-index .sec_menu .menu {
  margin-top: 0;
  padding: 0 40px;
}

#page-index .sec_menu {
  background: url(/assets/img/bg_wrapper.png);
  overflow: hidden;
  border-bottom: 10px #ffcc00 solid;
  padding-top: 110px;
}

#page-index .sec_menu .inner {
  box-sizing: border-box;
  padding: 0 0 80px;
  margin-top: 30px;
}

#page-index .sec_menu h2 {
  text-align: center;
}

#page-index .sec_menu h2#sec01 {
  margin-bottom: 40px;
}

#page-index .sec_menu .shop {
  margin-bottom: 80px;
  color: #fff;
}

#page-index .sec_menu .shop h2 {
  text-align: left;
  font-size: 34px;
  text-align: left;
}

.sec_menu .shop p.font-min {
  padding: 10px 0;
  font-size: 18px;
}

.sec_menu .shop p.notes {
  font-size: 12px;
}

.sec_guide {
  background: url(/assets/img/bg_guide.jpg) no-repeat top center;
  background-size: cover;
}

.sec_guide .inner {
  padding: 40px 0;
}

.sec_guide .inner h2 {
  padding-bottom: 20px;
}

.sec_guide .inner ul {
  margin-top: 1em;
}

.sec_recruit {
  background: #000;
  color: #fff;
  padding: 0;
}

.sec_recruit h2 {
  margin-bottom: 20px;
}

.sec_recruit ul {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

/*
.sec_recruit ul li{width: 33.33%;}
.sec_recruit ul li:last-child{text-align: right;}
*/
.sec_recruit ul li.center {
  max-width: 680px;
  padding-top: 20px;
  ;
}

.sec_recruit a img {
  margin-top: 20px;
}

.sec_info .inner {
  padding: 40px 0 60px;
}

.sec_info h2 {
  text-align: center;
}

.sec_info ul {
  margin: 40px 0 30px;
  ;
}

.sec_info li {
  border-bottom: 1px dotted #b5971b;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.sec_info li span {
  color: #b5971b;
  float: left;
}

.sec_info li p {
  margin-left: 7em;
}

.sec_info li a {
  color: #000;
}

@media screen and (min-width: 1000px) {

  .sec_recruit ul li:nth-child(1) img,
  .sec_recruit ul li:nth-child(3) img {
    max-width: none;
  }
}

@media screen and (min-width: 768px) {
  .sec_recruit ul li {
    overflow: hidden;
  }

  .sec_recruit ul li.center {
    padding: 20px 10px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .sec_recruit ul li:first-child img {
    max-width: 120%;
  }

  .sec_recruit ul li:last-child img {
    max-width: 120%;
  }

  #page-index .sec_info .inner {
    padding: 40px 20px 60px;
  }
}

/* ---------- sec_menu -- おすすめメニュー ---------- */
.sec_menu .menu {
  margin-bottom: 70px;
  margin-top: 0;
}

h3.menu_title {
  padding-bottom: 8px;
  margin-bottom: 1em;
  position: relative;
}

h3.menu_title:after {
  position: absolute;
  content: '';
  display: block;
  border-bottom: 1px solid #c7000a;
  width: 200%;
  bottom: 0;
}

.sec_menu.wrap_con h2 {
  text-align: center;
}

.sec_menu .menu>li:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.sec_menu .menu li {
  min-height: 1px;
}

.sec_menu .menu li:nth-child(odd) .text h3:after {
  left: -100%;
}

.sec_menu .menu li:nth-child(even) .text h3:after {
  left: 0;
}

.sec_menu .menu>li {
  position: relative;
  padding-top: 5em;
}

/**/
.page .sec_menu .menu>li .text {
  overflow: hidden;
}

.page .sec_menu .menu li.ph_right .text {
  padding-right: 20%;
}

.page .sec_menu .menu li.ph_right .image {
  position: absolute;
  top: -15px;
  left: 50%;
  z-index: 1;
  width: 100%;
}

.page .sec_menu .menu.sec_chukadon li.ph_right .image {
  top: -40px;
  left: 47%;
}

.page .sec_menu .menu li.ph_left .text {
  margin-left: 10%;
  padding-left: 40%;
}

.page .sec_menu .menu.sec_ippin li.ph_left .text {
  padding-left: 38%;
}

.page .sec_menu .menu li.ph_left .bg_menu {
  margin-left: 10%;
  padding-left: 40%;
}

.page .sec_menu .menu li.ph_left .image {
  position: absolute;
  top: -20px;
  left: -100px;
  z-index: 1;
  width: 60%;
}

#page-recommend .sec_nav.menu li:nth-child(7) a:after {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0 8px 10px;
  border-color: #d70c19 transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 15px;
  transform: rotate(90deg);
}

.sec_menu .menu .col3 li .menu_name {
  margin-top: 10px;
  border-bottom: 1px solid #b89b25;
  padding-bottom: 5px;
}

.sec_menu .menu .col2 li .menu_name {
  margin-top: 10px;
  border-bottom: 1px solid #CC0000;
  padding-bottom: 5px;
  font-weight: bold;
  width: 100%;
}

/*  */
.menu_name {
  color: #770000;
  font-weight: bold;
}

.bg_menu {
  background: rgba(184, 155, 37, 0.15);
  padding: 1em;
}

.price {
  color: #d70c19;
  font-weight: bold;
}

.price small {
  margin-left: 5px;
  font-size: 12px;
}

div.price {
  padding: 10px 0;
}

.setmenu_price_left,
.setmenu_price_right {
  position: relative;
  border-top: 1px #CC0000 solid;
  font-size: 12px;
  font-weight: bold;
  color: #d70c19;
  padding-top: 12px;
}

.notes_bottom {
  text-align: right;
}

.menu_text+.menu {
  margin-bottom: 40px;
}

.menu_text+.menu>li {
  padding-top: 1em;
}


/* ---------- sec_shop ---------- */
#page-shop .sec_shop>.inner {
  padding: 56px 26px;
}

.inner_shop {
  margin: 30px auto 80px;
}

.inner_shop .map {
  overflow: hidden;
}

.inner_shop .box {
  line-height: 1.4;
}

.inner_shop .text_address {
  padding-left: 1em;
  text-indent: -1em;
}

.inner_shop .text_tel {
  font-weight: bold;
}




@keyframes yuge {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

  /*	100% {opacity: 0;}*/
}



/*--------------------------------------
  PC
---------------------------------------*/
@media screen and (min-width: 768px) {
  a img:hover {
    opacity: .8;
  }

  /* ---------- home ---------- */
  #page-index .mainVisual {
    height: 590px;
  }

  #page-index .sec_menu .shop .right {
    float: right;
    width: 45%;
    padding-top: 25px;
  }

  #page-index .sec_menu .shop .left {
    float: left;
    width: 50%;
    position: relative;
  }

  #page-index .sec_menu .shop .left img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: none;
  }

  #page-index .sec_menu .menu_top {
    background: url(/assets/img/bg_menu_top.png) no-repeat top center;
    background-size: 100% auto;
  }

  #page-index .sec_menu .menu_top h2 {
    padding-top: 70px;
  }

  #page-index .sec_menu .menu_main {
    background: url(/assets/img/bg_menu_main.png) repeat-y top center;
    padding-bottom: 50px;
    background-size: 100% auto;
  }

  #page-index .sec_menu .menu_bottom {
    margin-top: -10px;
    height: 140px;
    background: url(/assets/img/bg_menu_bottom.png) no-repeat bottom center;
    position: relative;
    text-align: center;
    background-size: 100% auto;
  }

  #page-index .sec_menu .menu li:nth-child(odd) .text {
    float: right;
    width: 43%;
  }

  #page-index .sec_menu .menu li:nth-child(odd) .image {
    float: left;
    width: 72%;
    /* 57%(100-43) + 15% */
    margin: -20% 0 0 -15%;
  }

  #page-index .sec_menu .menu li:nth-child(1) .image {
    margin-top: -5%;
  }

  #page-index .sec_menu .menu li:nth-child(even) .text {
    float: left;
    width: 43%;
  }

  #page-index .sec_menu .menu li:nth-child(even) .image {
    float: right;
    margin: -20% -15% 0 0;
    width: 72%;
    /* 57%(100-43) + 15% */
  }

  #page-index .sec_menu .menu li:nth-child(2) {
    margin-top: 60px;
  }

  #page-index .sec_menu .menu li:nth-child(3) {
    margin-top: 260px;
  }

  #page-index .sec_menu .menu li:nth-child(4) {
    margin-top: 100px;
  }

  /*
	#page-index .sec_menu .menu li:nth-child(2n+1) .text { float: none; width: auto; text-align: right; }
	#page-index .sec_menu .menu li:nth-child(2n+1) .image{margin: 0; position: absolute; top: 0; left: -130px; float: none; width: auto;}
*/
  #page-index .sec_menu .menu li:nth-child(2n+1) .text {
    float: right;
    width: 50%;
    text-align: right;
  }

  #page-index .sec_menu .menu li:nth-child(2n+1) .image {
    margin: 0;
    position: absolute;
    top: 0;
    left: -130px;
    float: none;
    width: 73%;
  }

  #page-index .sec_menu .menu li:nth-child(3) .text {
    width: 80%;
  }

  /*
	#page-index .sec_menu .menu li:nth-child(2n) .text { float: none; width: auto;  }
	#page-index .sec_menu .menu li:nth-child(2n) .image{margin: 0; position: absolute; top: -60px; right: -120px; float: none; width: auto;}
*/
  #page-index .sec_menu .menu li:nth-child(2n) .text {
    float: none;
    width: 65%;
  }

  #page-index .sec_menu .menu li:nth-child(2n) .image {
    margin: 0;
    position: absolute;
    top: -60px;
    right: -17%;
    float: none;
    width: 73%;
  }

  #page-index .sec_menu .menu li:nth-child(4) .text {
    width: 55%;
  }

  #page-index .sec_menu .menu li:nth-child(3) .image {
    top: -215px;
    left: -140px;
  }

  #page-index .sec_guide .inner {
    padding: 60px 0;
  }

  #page-index .sec_guide a img {
    margin-top: 40px;
  }

  #page-index .sec_guide p {
    font-weight: bold;
  }


  /* ---------- sec_nav ---------- */
  .sec_nav li:first-child a,
  .sec_nav li:nth-child(7) a {
    border-left: 1px solid #aaa;
  }

  #page-recommend .sec_nav.menu li:nth-child(7) a {
    border-left: none;
  }

  /* ---------- sec_menu ---------- */
  .sec_menu .inner {
    padding: 40px;
  }

  .sec_menu .shop .right {
    float: right;
    width: 45%;
  }

  .sec_menu .shop .left {
    float: left;
    width: 50%;
  }

  #page-recommend .sec_nav.menu li {
    width: 14.2%;
  }

  .sec_menu .menu li .image {
    position: relative;
  }

  .sec_menu .menu li .image .yuge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .sec_menu .menu li .image .yuge.parallax {
    animation-name: yuge;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-fill-mode: both;
  }

  .sec_menu .menu li .image .yuge .yuge_inner {
    position: relative;
    animation-name: yuge;
  }

  .sec_menu .menu li .image .yuge .yuge_inner img {
    position: absolute;
    top: 0;
    left: 0;
  }


  .sec_menu.wrap_con h2 img {
    width: 55%;
  }

  .notes_bottom.red {
    font-size: 14px;
    margin-top: .5em;
  }

  /**/
  .menu_name {
    font-size: 20px;
  }

  .menu_name.li2 {
    margin-left: 30px;
  }

  .menu_name small {
    font-size: 12px;
  }

  .price {
    font-size: 16px;
  }

  .menu_plus {
    position: absolute;
    right: 0;
    top: -45px;
    max-width: 200px;
  }

  .setmenu.aset {
    margin-top: -2em;
  }

  .setmenu_price_left {
    font-size: 16px;
    width: 90%;
    top: -70px;
  }

  .setmenu_price_right {
    font-size: 16px;
    width: 50%;
    top: -106px;
    left: 50%;
  }

  .setmenu_price_right p {
    margin-left: 36%;
  }

  .sec_menu .menu.sec_gyoza>li.ph_right {
    padding-top: 2em;
  }

  .sec_menu .menu.sec_noodle>li.ph_left {
    padding-top: 3em;
  }

  .sec_menu .menu.sec_chukadon>li.ph_right {
    padding-top: 1em;
    margin-bottom: 1em;
  }

  .sec_menu .menu.sec_chukadon>li.ph_right+li {
    padding-top: 7em;
  }

  .sec_menu .menu.sec_ippin>li.ph_left {
    padding-top: 6em;
  }

  .sec_menu .menu.sec_ippin>li.ph_left+li {
    padding-top: 3.5em;
  }

  .page .sec_menu .menu .col3 {
    letter-spacing: -1em;
  }

  .page .sec_menu .menu.sec_noodle .col3 {
    margin-top: 50px;
  }

  .page .sec_menu .menu .col3 li {
    letter-spacing: normal;
    width: 32%;
    display: inline-block;
    margin-bottom: 20px;
  }

  .page .sec_menu .menu .col3 li:nth-child(3n-1) {
    margin: 0 2%;
  }

  .page .sec_menu .menu .col2 {
    letter-spacing: -1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .page .sec_menu .menu .col2 li {
    letter-spacing: normal;
    width: 48%;
    display: inline-block;
    margin-bottom: 20px;
  }

  .page .sec_menu .setmenu_price_left+.setmenu {
    margin-top: -6em;
  }

  .page .sec_menu .setmenu_price_right+.menu_text {
    margin-top: -6em;
  }

  .page .sec_menu .setmenu>li {
    position: relative;
    padding-top: 1em;
  }

  .page .sec_menu .setmenu>li .text {
    overflow: hidden;
  }

  .page .sec_menu .setmenu li.ph_right .image {
    position: relative;
    top: 0px;
    left: 0px;
    z-index: 1;
    width: 120%;
  }

  .page .sec_menu .setmenu li.ph_left .image {
    position: relative;
    top: -20px;
    left: -15%;
    z-index: 1;
    width: 120%;
  }

  .page .sec_menu .setmenu>li .text img {
    width: 100%;
  }

  .sec_menu.wrap_con .sec_gyoza {
    margin-top: 10px;
  }

  .sec_menu.wrap_con .sec_gyoza .text_top {
    width: 50%;
  }

  .page .sec_menu.wrap_con .menu.sec_gyoza li.ph_right .image {
    left: auto;
    right: -100px;
    width: 60%;
  }

  .sec_menu.wrap_con .sec_chukadon {
    margin-top: 10px;
  }

  .page .sec_menu.wrap_con .menu.sec_chukadon li.ph_right .image {
    left: auto;
    right: -18%;
    width: 70%;
  }

  .sec_menu.wrap_con .menu.sec_soup>li {
    padding-top: 2em;
  }

  .sec_menu .menu .bg_menu.other {
    margin: 0;
    padding: 1em 1.2em;
  }

  .sec_menu .menu .bg_menu.other ul {
    letter-spacing: -1em;
  }

  .sec_menu .menu .bg_menu.other li {
    letter-spacing: normal;
    width: 50%;
    vertical-align: top;
    display: inline-block;
    padding: 2px 0;
    position: relative;
  }

  .sec_menu .menu .bg_menu.other li .menu_name {
    min-width: calc(100% - 11em);
    display: inline-block;
  }

  .sec_menu .menu .bg_menu.other li.line2 {
    line-height: 1;
    padding: 6px 0;
  }

  .sec_menu .menu .bg_menu.other li.line2 .spPrice {
    position: absolute;
    top: 12px;
  }

  .sec_menu .menu .bg_menu .notes {
    text-align: right;
  }

  .sec_menu .menu .bg_menu .notes span {
    text-align: left;
    display: inline-block;
  }


  .sec_menu .takeout {
    margin: 50px 0 0;
    text-align: center;
  }

  .sec_menu .takeout h2 {
    margin: 0 0 50px;
    position: relative;
  }

  .sec_menu .takeout h2 .ico_takeout {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
  }

  .sec_menu .takeout p {
    margin: 30px 0 0;
    font-size: 18px;
  }

  .sec_menu .takeout p span {
    color: #de0000;
  }

  .sec_menu .takeout .menu {
    margin: 30px 0;
    text-align: left;
  }

  .sec_menu .takeout .menu>li {
    padding: 0;
  }

  .sec_menu .takeout .menu li small {
    font-size: 12px;
  }

  .sec_menu .telBlock {
    display: flex;
    flex-flow: wrap;
    font-size: 18px;
    margin: 50px 0 0;
  }

  .sec_menu .telBlock dt {
    width: 100%;
    border-bottom: 1px solid #c7000a;
    padding: 0 0 10px;
    margin: 0 0 20px;
    text-align: center;
  }

  .sec_menu .telBlock dd {
    margin: 0 20px 30px;
  }

  .sec_menu .telBlock dd a {
    text-decoration: underline;
    color: #0000aa;
  }

  .sec_menu .telBlock dd a:hover {
    text-decoration: none;
  }

  .spmode {
    display: none !important;
  }

  /* ---------- sec_shop ---------- */
  .inner_shop {
    overflow: hidden;
  }

  .inner_shop .map {
    float: left;
    /*width: 570px;*/
    height: 300px;
    width: calc(100% - 370px);
  }

  .inner_shop .map iframe {
    margin-top: -150px;
  }

  /*.inner_shop .box{float: right;width: 320px;}*/
  .inner_shop .box {
    float: left;
    width: 320px;
    margin-left: 50px;
  }

  .inner_shop .box p {
    margin-top: 10px;
  }

  .inner_shop .text_openTime {
    font-size: 20px;
  }

  .inner_shop .text_tel {
    float: right;
    width: 320px;
    font-size: 28px;
  }

  .footer .logo {
    padding: 0 20px;
  }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  #page-index .mainVisual {
    height: auto;
    padding-bottom: 42%;
  }

  #page-index .sec_read h1 {
    top: -9vw;
  }

}

/*--------------------------------------
  SP
---------------------------------------*/

@media screen and (max-width: 767px) {
  .wrap_con {
    padding: 0 20px;
  }

  .wrap_con .inner {
    border-left: solid 5px #b10009;
    border-right: solid 5px #b10009;
    box-shadow: 0px 0px 0px 3px #e9ba00, 0px 0px 0px 7px #5f0000;
  }


  /* ---------- mainVisual ---------- */
  .mainVisual {
    height: 315px;
  }

  #page-recommend .mainVisual {
    background-image: url(/assets/img/menu/bg_mv_sp.jpg);
  }

  /*  #page-shop .mainVisual {background-image: url(/assets/img/shop/bg_mv_sp.png);}*/
  .mainVisual h1 {
    height: 230px;
  }

  .mainVisual .sec_read {
    height: 130px;
  }

  #page-shop .mainVisual {
    background: none;
    height: auto;
  }

  #page-shop .mainVisual h1 {
    height: auto;
  }

  #page-shop .mainVisual .sec_read {
    display: none;
  }

  #page-recommend .mainVisual {
    background: none;
    height: auto;
  }

  #page-recommend .mainVisual h1 {
    height: auto;
  }

  #page-takeout .mainVisual .sec_read,
  #page-recommend .mainVisual .sec_read {
    display: none;
  }

  /* ---------- home ---------- */
  .fadein {
    opacity: 1;
  }

  .fade_scale2 {
    display: none;
  }

  .fade_scale {
    transform: scale(1, 1);
  }

  /***
  #page-index .mainVisual {
    height: 255px;display: flex;align-items: center;justify-content: center;
    background: url(/assets/img/mv_sp.jpg) no-repeat 50% 50% / cover;
  }
***/
  #page-index .mainVisual {
    height: auto;
  }

  #page-index .mainVisual video {
    opacity: 0;
  }

  #page-index .sec_read h1 {
    position: static;
    margin-top: -10%;
  }

  #page-index .sec_menu .inner.sec_shop {
    margin-top: 0;
  }


  #page-index .sec_menu {
    padding-top: 30px;
  }

  #page-index .sec_menu .shop {
    position: relative;
    margin-bottom: 40px;
  }

  #page-index .sec_menu .shop .left {
    position: absolute;
    left: -16%;
    top: 0;
    width: 71%;
  }

  #page-index .sec_menu .shop h2 {
    font-size: 24px;
    line-height: 1.2;
    padding-left: 56%;
  }

  .sec_menu .shop p.font-min {
    text-align: center;
  }

  .sec_menu .shop p.notes {
    line-height: 1.2;
    font-size: 10.5px;
    padding-top: 4px;
  }

  #page-index .sec_menu {
    padding: 10px 15px 0;
  }

  #page-index .sec_menu .inner {
    padding-bottom: 30px;
  }

  .menu_wrap {
    background: #f0e1ca url(/assets/img/bg_menu.jpg);
    box-sizing: border-box;
    border: 5px solid #b10009;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 3px #e9ba00, 0px 0px 0px 8px #5f0000;
    background: #f0e0ca;
  }

  .menu_bottom {
    padding: 0 15px 40px;
    position: relative;
    text-align: center;
  }

  .menu_bottom a img {
    width: 90%;
  }

  #page-index .menu_top h2 {
    padding-top: 20px;
    position: relative;
  }

  #page-index .menu_top h2:after,
  #page-index .menu_top h2:before,
  #page-index .menu_bottom:after,
  #page-index .menu_bottom:before {
    content: '';
    display: block;
    position: absolute;
    width: 23px;
    height: 23px;
    background: url(/assets/img/box_corner.png) no-repeat 50% 50% / contain;
  }

  #page-index .menu_top h2:before,
  #page-index .menu_top h2:after {
    top: 0;
  }

  #page-index .menu_top h2:before {
    left: 0;
  }

  #page-index .menu_top h2:after {
    right: 0;
    transform: rotate(90deg);
  }

  #page-index .menu_bottom:before,
  #page-index .menu_bottom:after {
    bottom: 0;
  }

  #page-index .menu_bottom:before {
    left: 0;
    transform: rotate(-90deg);
  }

  #page-index .menu_bottom:after {
    right: 0;
    transform: rotate(180deg);
  }

  #page-index .menu_top h2 img,
  #page-index .sec_guide h2 img,
  #page-index .sec_recruit h2 img,
  #page-index .sec_info h2 img {
    height: 22px;
    width: auto;
  }

  #page-index .sec_menu .menu {
    padding: 0;
  }

  #page-index .sec_menu .menu li .image {
    width: 115%;
    margin-bottom: -90px;
  }

  #page-index .sec_menu .menu li:nth-child(1) .image {
    margin-left: -20%;
    /*margin-bottom: -50px;*/
    margin-bottom: -13%;
  }

  #page-index .sec_menu .menu li:nth-child(2) .image {
    margin-bottom: -28%;
  }

  #page-index .sec_menu .menu li:nth-child(3) .image {
    margin-left: -20%;
    margin-bottom: -24%;
  }

  #page-index .sec_menu .menu li:nth-child(4) .image {
    width: 118%;
    margin-left: 3%;
    margin-bottom: -26%;
  }

  #page-index .sec_guide {
    font-size: 12px;
    padding: 0 15px;
  }

  #page-index .sec_guide .inner div {
    margin-top: 30px;
  }

  /*  
  #page-index .sec_recruit ul li:first-child,
  #page-index .sec_recruit ul li:last-child{display: none;}
  #page-index .sec_recruit ul li.center{padding: 0 0 20px;}
  #page-index .sec_recruit ul li.center .img{font-size: 12px;background: url(/assets/img/bg_recruit.jpg) no-repeat 50% 0 / 100% auto;padding: 30px 0 40px;}
  #page-index .sec_recruit ul li.center .btn{w126pxidth: 80%;margin: auto;}
*/


  #page-index .sec_recruit {
    overflow: hidden;
  }

  #page-index .sec_recruit ul {
    width: 150%;
    margin-left: -25%;
  }

  .sec_recruit ul li.center {
    width: 60%;
    padding-top: 1em;
  }

  .sec_recruit ul li.center p {
    line-height: 1.2;
  }

  .sec_recruit .btn.spOnly {
    width: 80%;
    margin: 5px auto 1em;
  }

  .sec_recruit h2 {
    margin-bottom: 0;
  }

  #page-takeout .mainVisual {
    height: auto;
  }

  .sec_menu .takeout h2 {
    position: relative;
  }

  .sec_menu .takeout h2 .ico_takeout {
    position: absolute;
    top: 100%;
    right: -35px;
    width: 30%;
  }

  .sec_info .inner {
    padding: 30px 0 60px;
  }

  .sec_info .inner ul {
    margin: 20px 15px;
  }

  .sec_info .inner .center {
    width: 80%;
    margin: auto;
  }

  /* ---------- sec_nav ---------- */
  .sec_nav {
    background: #e6e6e6;
    border: none;
    margin-bottom: -6px;
    position: relative;
  }

  .sec_nav:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: #ffcc00;
  }

  .sec_nav li {
    width: 33.33%;
    background: linear-gradient(to bottom, #f1f1f1 0%, #dedede 100%);
    border-bottom: 6px solid #ffcc00;
  }

  .sec_nav li a {
    height: 40px;
  }

  .sec_nav li:nth-child(3n) a {
    border-right: none;
  }

  .sec_nav li a img {
    height: 12px;
    width: auto;
  }

  .sec_nav li a:after {
    border-width: 7px 7px 0;
    margin-left: -7px;
    bottom: 5px;
  }

  /* ---------- footer ---------- */
  /*.footer {margin-top: 20px;}*/
  .footer .inner {
    padding: 20px 20px 0;
  }

  .footer ul,
  .footer ul li {
    display: block;
    text-align: center !important;
    font-size: 13px;
    margin-bottom: 20px;
  }

  .footer ul li a {
    margin: auto;
    position: relative;
  }

  .footer ul li a:after {
    content: '';
    display: block;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    right: -20px;
    top: 50%;
    margin-top: -5px;
  }

  .footer ul li:first-child a:after,
  .footer ul li:last-child a:after {
    margin-top: 0;
  }


  .footer ul li img {
    height: 30px;
    width: auto;
    margin: auto;
  }

  .footer p.copyright {
    font-size: 10px;
    padding: 30px 0 10px;
  }

  .pagetop {
    width: 50px;
  }

  /* ---------- sec_menu ---------- */

  .sec_menu>.inner {
    padding: 30px 10px;
  }

  .page .sec_menu>.inner {
    padding: 30px 10px 40px;
  }

  /*  .sec_menu h2 img{height: 24px;width: auto;}*/
  .sec_menu h3.menu_title+p {
    font-size: 11px;
  }


  /* menu */
  .sec_menu .menu {
    margin-bottom: 40px;
  }

  .sec_menu .menu>li {
    padding-top: 1em;
  }

  .page .sec_menu .menu li.ph_right .image {
    top: 132px;
    left: 36%;
    width: 80%;
  }

  .page .sec_menu .menu li.ph_left .image {
    top: -10px;
    left: -78px;
    width: 70%;
  }

  .page .sec_menu .menu li.ph_left .text {
    padding-left: 35%;
  }

  /* sec_gyoza */
  .sec_gyoza h3.menu_title:after {
    width: 80%;
  }

  .sec_gyoza h3.menu_title+p {
    width: 36%;
  }

  .sec_gyoza .text_img_top {
    /*width: 252px;*/
    width: 80%;
    margin-bottom: 10px;
  }

  .sec_menu .menu.sec_gyoza>li.ph_right {
    padding-top: 2em;
  }

  .page .sec_menu .menu.sec_gyoza li.ph_right .image {
    position: relative;
    margin-top: -14em;
    top: 0;
  }



  /* sec_noodle */
  .sec_menu .menu.sec_noodle>li.ph_left {
    padding-top: 1em;
  }

  .sec_menu .menu.sec_noodle div.price {
    padding: 0 0 10px;
  }

  .page .sec_menu .menu.sec_noodle li.ph_left .image {
    top: 0;
    left: -20%;
    width: 65%;
  }



  /* sec_chukadon */
  .sec_menu .menu.sec_chukadon li:nth-child(odd) .text h3:after {
    left: 0;
  }

  .sec_menu .menu.sec_chukadon li.ph_right .text {
    padding-right: 48%;
  }

  .sec_menu .menu.sec_chukadon h3.menu_title {
    margin-bottom: 5px;
  }

  .sec_menu .menu.sec_chukadon .text div.price {
    padding: 0 0 15px;
  }

  .page .sec_menu .menu.sec_chukadon li.ph_right .image {
    top: -10px;
  }

  .page .sec_menu .menu.sec_chukadon>li.ph_right+li {
    padding-top: 0;
  }

  /* sec_ippin */
  .sec_menu .menu.sec_ippin li.ph_left .image {
    width: 70%;
    top: 0;
    left: -22%;
  }

  .sec_menu .menu.sec_ippin>li.ph_left {
    padding-top: 2em;
  }

  .sec_menu .menu.sec_ippin h3.menu_title {
    margin-bottom: 5px;
  }

  .sec_menu .menu.sec_ippin .text div.price {
    padding: 0 0 15px;
  }

  /* bg_menu */
  .bg_menu,
  .page .sec_menu .menu li.ph_left .bg_menu {
    padding: 8px 12px;
  }

  .page .sec_menu .menu li.ph_left .bg_menu {
    margin-left: 0;
  }

  .bg_menu_gyoza {
    font-size: 10px;
  }

  .bg_menu_gyoza .menu_name {
    font-size: 15px;
  }

  .bg_menu_gyoza .menu_name.li2 {
    display: inline-block;
  }

  .bg_menu_gyoza .price {
    font-size: 13px;
  }

  .bg_menu_gyoza .price small {
    font-size: 10px;
  }

  .menu_plus {
    position: absolute;
    right: -20px;
    top: -60px;
    max-width: 88px;
  }


  .sec_menu .other li {
    overflow: hidden;
  }

  .sec_menu .other .menu_name {
    white-space: normal;
    display: inline-block;
  }

  .sec_menu .other .spPrice {
    white-space: normal;
    display: inline-block;
    float: right;
  }

  .sec_menu .other .notes {
    text-align: right;
    font-size: 11px;
    margin-top: 3px;
  }

  .sec_menu .other .notes span {
    width: 90%;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
    display: inline-block;
  }


  .sec_menu .menu .col2 li .menu_name {
    line-height: 1;
  }

  .sec_menu .menu .col2 li .price {
    line-height: 1.2;
    padding: 5px 0 20px;
  }

  .sec_menu .setmenu li.ph_right .image {
    position: relative;
    top: -20px;
    margin-bottom: -20px;
    left: 0px;
    z-index: 1;
    width: 112%;
  }

  .sec_menu .setmenu li.ph_left .image {
    position: relative;
    top: -60px;
    left: -12%;
    z-index: 1;
    width: 112%;
  }

  .setmenu_price_left,
  .setmenu_price_right {
    padding-top: 5px;
  }

  .setmenu_price_left {
    width: 90%;
    top: -50px;
  }

  .setmenu_price_right {
    width: 60%;
    top: -110px;
    left: 40%;
    margin-bottom: -70px;
  }

  .setmenu_price_right p {
    margin-left: 18%;
  }

  .menu_text img {
    height: 23px;
    width: auto;
  }

  .menu_text+.menu.af02 {
    margin-bottom: 20px;
  }

  .notes_bottom {
    font-size: 12px;
  }


  .sec_menu .takeout {
    margin: 30px 0 0;
  }

  .sec_menu .takeout h2 {
    margin: 0 0 30px;
  }

  .sec_menu .takeout p {
    margin: 30px 0 0;
    text-align: center;
    font-size: 14px;
  }

  .sec_menu .takeout p span {
    color: #de0000;
  }

  .sec_menu .takeout .menu {
    margin: 30px 0;
  }

  .sec_menu .takeout .menu>li {
    padding: 0;
  }

  .sec_menu .takeout .menu li small {
    font-size: 12px;
  }

  .sec_menu .telBlock {
    font-size: 18px;
    margin: 50px 0 0;
  }

  .sec_menu .telBlock dt {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #c7000a;
    padding: 0 0 10px;
    margin: 0 0 20px;
  }

  .sec_menu .telBlock dd {
    margin: 0 0 20px 0;
    text-align: center;
    border: 1px solid #c0000a;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    background: #fff;
  }

  .sec_menu .telBlock dd a {
    text-decoration: underline;
    color: #0000aa;
    padding-left: 5px;
    display: block;
    color: #000;
    outline: none;
  }

  .sec_menu .telBlock dd a p {
    position: relative;
    display: inline-block;
    margin: 0 0 0 20px;
    line-height: 1;
  }

  sec_menu .telBlock dd p a[href^="tel:"] {
    text-decoration: none !important;
    outline: none;
    pointer-events: none;
  }

  .sec_menu .telBlock dd a p:before {
    content: "";
    background: url(/assets/img/shop/icon_tel.png) no-repeat left / 18px auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -26px;
    width: 20px;
    height: 20px;
    margin: auto;
  }

  #page-recommend .sec_nav.menu li:nth-child(7) a:after {
    border-width: 0 5px 7px;
    margin-left: -5px;
    bottom: 5px;
  }

  .pcmode {
    display: none !important;
  }



  /* ---------- sec_shop ---------- */
  #page-shop .sec_shop>.inner {
    padding: 30px 10px 10px;
  }

  .sec_shop h2 {
    margin: 0 10px;
  }

  .sec_shop .menu_top h2 {
    margin: 0;
  }

  .sec_shop h2 img {
    height: 24px;
    width: auto;
  }

  .inner_shop {
    margin: 10px auto 60px;
  }

  .inner_shop .map {
    height: 160px;
  }

  .inner_shop .map iframe {
    width: 100%;
    height: 160px;
  }

  .inner_shop .box {
    margin-top: 15px;
  }

  .inner_shop .box .image {
    float: left;
    width: 40%;
    margin-bottom: 10px;
  }

  .inner_shop .box p {
    float: right;
    width: 55%;
    font-size: .9em;
  }

  .inner_shop .box .text_address {
    margin: 8px 0 10px;
    padding-left: 3em;
    text-indent: -3em;
    font-size: .8em;
  }

  .inner_shop .text_tel {
    font-size: 15px;
    clear: both;
    width: 210px;
    margin: 0 auto;
    text-align: center;

    position: relative;
    border: 1px solid #c0000a;
    border-radius: 5px;
    padding-left: 5px;
    background: #fff url(/assets/img/shop/icon_tel.png) no-repeat 14px 50% / 18px auto;
    display: block;
    height: 40px;
    line-height: 38px;
    color: #000;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  }

  .inner_shop .text_tel:after {
    content: '';
    display: block;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #c0000a;
    position: absolute;
    right: 8px;
    top: 50%;
    margin-top: -5px;
  }

  .inner_shop .text_tel a {
    color: #000;
  }

}

@media screen and (max-width: 480px) {
  .page .sec_menu .menu.sec_gyoza li.ph_right .image {
    position: absolute;
    top: 34vw;
    margin-top: 0;
  }
}


/*南京亭 お持ち帰りメニュー */
@media screen and (min-width: 768px) {
  #page-takeout .sec_menu .menu .bg_menu.other li .menu_name {
    min-width: calc(100% - 9em);
  }
}