@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

:root {
  --tomato: #B31F24;
  --cheese: #F8E15A;
  --lettuce: #578835;
  --buns: #DC8210;
  --meet: #9E6011;
  --dark: #333;
  --gray: #999;
  --light-gray: #e2e0e0;
  --light: #fff;

}
/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:active {
  opacity: 0.6;
}
a:visited {
  opacity: 1;
}
p {
  color: #333;
}
img {
  width: 100%;
  object-fit: cover;
}
/* 全体 */
body{
    width: 100%;
    line-height: 1.6;
  /* background: var(--tomato); */
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", YuGothic, "Yu Gothic", "Noto Sans", Meiryo, sans-serif;
      }
b, strong, .bold{
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", YuGothic, "Yu Gothic", "Noto Sans", Meiryo, sans-serif;
}

/* SP */
@media screen and (min-width:300px) {
    .sp-only {
        display: block;
      }
      .pc-only {
        display: none;
      }
      .tab-only {
      display: block;
    }
    h2 img {
        width: auto;
        height: 85px;
        margin-bottom: 40px;
    }
    .h2-menu img {
      height: 40px;
    }
    h3 img {
        width: auto;
        height: 24px;
        margin-bottom: 40px;
    }
    h2,h3 {
      text-align: center;
    }
    section {
      padding: 16px 0;
      margin: 0 auto;
    }
    
    .container {
        width: calc(100% - 16px);
        margin: 0 auto;
        padding: 40px 8px;
        box-sizing: border-box;
    }
    .box_tomato {
        width: calc(100% - 16px);
        background: var(--light);
        border: 8px solid var(--tomato);
        border-radius: 60px;
        box-sizing: border-box;
    }
    
/* header */
.Header {
  background: var(--tomato);
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  align-items: center; /* 中央揃えのために追加 */
}

.head-banner {
  width: 200px;
  margin: 0 auto;
}

.Logo img {
  width: 80%;
  max-width: 360px;
  min-width: 100px;
  height: auto;
}

.Nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 50%;
  height: 100vh;
  background-color: var(--dark);
  color: var(--light);
  transform: translateX(100%);
  transition: all 0.3s;
}

.Nav-List {
  width: 100%;
  padding: 100px 16px 0;
}

.Nav-List-Item {
  border-bottom: dotted 4px var(--cheese);
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: bold;
}

.Button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  height: 60px;
  padding-left: 10px;
  padding-right: 20px;
}

.Button-LineTop,
.Button-LineMedium,
.Button-LineBottom {
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--light);
  transition: all 0.3s;
}

.Button-LineTop {
  position: absolute;
  top: 16px;
}

.Button-LineBottom {
  position: absolute;
  bottom: 16px;
}

/* バツ印への変化 */
.ButtonIsOpen .Button-LineTop {
  transform: rotate(45deg);
  top: 50%;
  transform-origin: center;
}

.ButtonIsOpen .Button-LineMedium {
  opacity: 0;
}

.ButtonIsOpen .Button-LineBottom {
  transform: rotate(-45deg);
  bottom: 50%;
  transform-origin: center;
}

/* ナビゲーションが開いた状態 */
.NavIsOpen {
  transform: translateX(0);
}

/* 余白部分をグレーで透過 */
.Overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 0.3s;
}

.OverlayIsOpen {
  visibility: visible;
  opacity: 1;
}
.sns_link {
  margin-top: 60px;
  text-align: center;
}
.sns_link p {
  margin-bottom: 16px;
}
.sns_link img {
  width: auto;
  height: 25px;
}
.sns_link ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_link li img {
  width: 60%;
  height: auto;

}
/* main-visual */
.main-visual {
  background: var(--buns);
  background-image: url(../images/bg_halftone-sp.png);
  background-repeat: repeat-y;
  background-size: 100%;
  padding: 8px;

}
.container.-mv-container {
  padding: 0;
}
.mv_parent {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mv_right_block {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.disabled-link {
  pointer-events: none;
}
.mv_right_block-second {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.main-visual figure img {
  border-radius: 20px;
}


/* menu */
.menu {
  width: 100%;
  margin: 0 auto;
}
.content_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  gap: 3vw;
}
.content_menu-card {
  width: 100%;
  padding: 16px;
  background: linear-gradient(128deg, rgba(252, 194, 0, 1) 0%, rgba(232, 155, 0, 1) 100%);
  box-sizing: border-box;
  gap: 1vw;
}
.content_menu-card.sp-burger {
  background: linear-gradient(128deg, rgb(255 149 149) 0%, rgb(255 106 0) 100%)!important;
}
.shop-price {
  font-family: "M PLUS 1", sans-serif;
  font-weight: bold;
  color: var(--dark);
  font-size: 0.7rem;
  margin-top: 1em;
  padding-top: 1em;
  border-top: 2px dotted var(--buns);
}
.menu-price {
  text-align: right;
}
/*.menu-price:before {
  content: "……";
  margin-right: 0.5em;
}*/
.wrapper-comtent_menu {
  /*display: flex;*/
  margin-bottom: 10px;
  position: relative;
}
.wrapper-comtent_menu div {
}
.content_menu_info {
  position: absolute;
  width: 25%;
  top: 0;
  right: 0;
}
.content_menu_info figure {
}
.pref {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--light);
  width: fit-content;
  padding: 8px 16px;
  margin: 0 auto;
  display: block;
  background: var(--meet);
  border-radius: 30px;
}
.just-opened {
  font-size: 0.8rem;
  background: var(--lettuce);
  color: var(--light);
  padding: 0.2rem 0.4rem;
  margin-left: 0.5em;
  border-radius: 30px;
}
.shop-txt {
  font-family: "M PLUS 1", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0.5em;
  word-break: break-all;
}
.shop-ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  color: #FFF;
  margin-bottom: 0.8rem;
}
.annotation {
  padding: 1em .4em;
}
.annotation p {
  font-size: 10px;
}

/* menu list */
.box-menu {
    border-top: dotted 5px #FFF;
    padding-top: 15px;
    margin-top: 15px;
}
.menu-list {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: .8rem;
}
.menu-list li {
	font-family: "M PLUS 1", sans-serif;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    line-height: 1.1;
}
.menu-list .menu-name {
    /*white-space: nowrap;*/
    text-decoration: none;
    padding-right: 5px;
    max-width: calc(100% - 40px - 3.4rem);
}
.menu-list .leeder {
    flex: 1 1 auto;
    transform: translateY(-.1em);
    background: url(../images/ellipses.png) no-repeat right center;
    background-size: 40px;
}
.menu-list .menu-price {
    white-space: nowrap;
    text-align: right;
    min-width: 3.4rem;
    padding-left: 5px;
}
.breakpoint {
	white-space: nowrap;
}

/* .shop-info {
  color: var(--buns);
} */

/* news */
/* .news {
    background: var(--buns);
    background-image: url(../images/bg_halftone.png);
  }
  .news ul {
    margin: 0 auto;
  }

  .news li {
    border-bottom: 4px dotted var(--buns);
    display: flex;
    align-items: flex-start;
    padding-bottom: 8px;
  }
  .content_news-date {
    flex: 1;
    position: relative;
    text-align: center;
  }
  .content_news-date .date {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
  }
  .content_news-date figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 90px;
  }

  .content_news-date p {
    color: var(--meet);
    font-weight: bold;
  }
  .content_news-date .year {
    font-size: 1.2rem;
  }
  .contet_news {
    flex: 4;
    padding-left: 16px;
  }
  .contet_news-ttl {
    color: var(--meet);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 18px;
  }
  .contet_news-txt {
    font-weight: bold;
    font-size: 1rem;
  } */

/* about */
.about {
    background: var(--dark);
    background-image: url(../images/bg_halftone.png);
    background-repeat: repeat-x;
    padding: 40px 0 80px;
  }
  .container.-about-container {
    width: calc(100% - 10%);
    padding: 0;
    background-image: url(../images/bg_hb-black.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .content_about {
    width: calc(100% - 16px);
    height: auto;
    margin-bottom: 20px;
    /* word-break: break-all; */
    letter-spacing: 1.2px;
    /* line-height: 2; */
  }
  .content_about:last-child {
    margin-bottom: 0;
  }
  .content_about p {
    color: var(--light);
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  }
  .main-ttl-one {
    background: var(--dark);
    font-size: 1.8rem;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgba(248, 15, 15, 1), rgba(229, 96, 11, 1));
  }
  .main-ttl-two {
    background: var(--dark);
    font-size: 1.8rem;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgba(89, 248, 57, 1), rgba(195, 185, 23, 1));
  }
  .sub-ttl {
    font-size: 1rem;
    text-align: center;
    margin: 0 auto;
  }
  .sub-ttl span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #2fc243;
    background: var(--dark);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }
  .sub-ttl.-yellow {
    color: var(--cheese);
    font-size: 1.2rem;
  }
  .discretion {
    font-size: 0.8rem;
    text-align: center;
    margin: 0 auto;
  }
  .discretion span {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2fc243;
    background: var(--dark);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    margin: 0 .1em;
  }
  
/* satacoco */
.satacoco-pr {
    background: var(--buns);
    width: 100%;
    margin: 0 auto;
    background-image: url(../images/bg_halftone.png);
    background-repeat: repeat-x;
    padding: 40px 16px;
  }
.satacoco {
    background: #F83456;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
  }
  .container.-satacoco-container {
    padding: 0;
  }
  .ttl_wrap {
    margin: 0 auto;
    padding-bottom: 16px;
  }
  
  .satacoco .ttl_wrap figure {
    max-width: 260px;
    margin: 0 auto 20px;
  }
  .satacoco-ttl {
    width: 100%;
    color: var(--light);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: bold;
    border-bottom: dotted 6px var(--cheese);
  }
  .satacoco_wrapper {
    display: flex;
    flex-direction: column
  }
  .bubble {
    position: relative;
    display: inline-block;
    width: calc(100% - 16px);
    margin: 0 auto;
    padding: 16px;
    background: var(--light);
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.8;
  }
  .bubble:before {
    content: "";
    position: absolute;
    top: 96%;
    left: 48%;
    border-left: 1em solid transparent;
    border-right: 1em solid transparent;
    border-bottom: 2em solid var(--light);
    transform: rotate(-180deg);
  }
  .bubble p {
    font-weight: bold;
  }
  .cast_images {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto;
    /* padding-top: 32px; */
    /* background: url(../images/img_cast.png); */
  }
  .cast_images figure {
    padding-top: 10%;
  }
  .cast_images img {
    margin-bottom: 10px;
  }
  .cast_images .cast_name {
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    color: var(--light);
    width: 100%;
    margin: 0 auto;
    display: inline-block;
  }
  
  /* movie */
  .movie {
    background: var(--light);
    background-image: url(../images/bg_red.png);
    background-size:cover;
    background-position: center;
  }
.movie_card_block {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.movie_card p {
  font-weight: bold;
  line-height: 1.8;
  padding: 8px;
}
.movie_card figure {
  margin-bottom: 8px;
}

/* access */
.access {
  background: var(--buns);
  background-image: url(../images/bg_halftone.png);
  background-repeat: repeat-x;
}
.gmap_iframe {
    aspect-ratio: 16 / 9;
    /* max-width: 1000px; */
    width: 100%;
    height: auto;
}
.access_block {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.access_wrapper {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.access_left_block {
  flex: 1;
}
.access_right_block {
  flex: 1;
}
/* .place {
  background: var(--cheese);
  border-radius: 10px;
} */
.access dt {
  vertical-align: middle;
  font-size: 1.0rem;
  font-weight: bold;
  margin-top: 20px;
}
.access dt img {
  vertical-align: middle;
  padding-right: 1em;
  width: 8%;
  min-width: 40px;
  padding: 10px;
}
.access dd {
  margin-top: 10px;
  font-size: 0.7rem;
  padding-left: 1em;
  display: flex;
}
.access .traffic::before {
  content: '〇';
  padding-right: 0.5em;
}

/* sponcer  */
.sponcer {
  background: var(--dark);
  color: var(--light);
}
.container.-sponcer-container {
  margin: 0 auto;
}
.spo-logo_block {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}
.sponcer p {
  color: var(--light);
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.spo-logo_block figure {
  display: inline-block;
}
.spo-logo_block-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
  margin-bottom: 40px;
  padding: 0 1%;
}
.spo-logo_block figure {
  width: 40%;
  max-width: 280px;
}
.spo-logo_block-row figure {
  /* flex: 1; */
  width: 23%;
}

.sponcer .spo-logo_block:last-of-type {
  margin-bottom: 20px;
}

/* contact */
.contact {
  background: var(--light);
  background-image: url(../images/bg_yellow.png);
  background-size: cover;
  background-position: center;
}
.contact_block {
  width: 80%;
  margin: 0 auto;
}
.contact_mail {
  background: var(--light);
  border: 4px solid var(--tomato);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.contact_add {
  margin-bottom: 40px;
  text-align: center;
}
.contact_add p {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 16px;
}
.contact_mail p {
  font-size: 1rem;
  color: var(--tomato);
  padding-left: 40px;
}
.contact_mail figure {
  width: 40px;
}
/* footer */
footer {
  background: var(--tomato);
  text-align: center;
  padding: 10px;
}
small {
  color: var(--light);
  font-size: 1.2rem;
}
/* menuへ戻るボタン */
.pagemenu {
  cursor: pointer;
  position: fixed;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 100px;
  height: auto;
  transition: .3s;
  z-index: 99;
  /* display: none; */
}
.pagemenu:hover,
.pagemenu:active {
  opacity: 0.6;
}
}

@media screen and (min-width:480px) {
  .contact_block {
    width: 80%;
    margin: 0 auto;
  }
}


/* 25/10/02 熊台和牛バーガー追加 */
.txt-aori {
	font: bold 2rem/1 'Noto Sans JP', sans-serif;
	width: fit-content;
    padding: 8px 16px;
    line-height: 1;
    background-color: #F44336;
    position: absolute;
    top: 0px;
    left: -34px;
    transform: rotate(-12deg);
    color: #FFEB3B;
    box-shadow: 5px 5px 5px #00000080;
}
.frame-description {
	background-color: #FFFFFFDD;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 3px 3px 10px #00000080;
}
.content_menu-card.sp-burger {
	background: url(../images/bg_polka-dot.png) center center, url(../images/bg_red.png) no-repeat center center!important;
	background-size: 15%, cover!important;
}
.frame-description {
    background-color: #FFFFFFC0;
    padding: 16px;
    border-radius: 16px;
}

@media screen and (min-width: 768px) {
.content_menu-card.sp-burger {
	width: 100%;
}
.wrapper-collabo {
	margin: 0 auto;
	max-width: 1300px;
	display: flex;
	gap: 2vw;
}
.frame-description {
    background-color: #FFFFFFC0;
    padding: 32px;
    margin-bottom: 10px;
    border-radius: 16px;
    width: 50%;
    box-sizing: content-box;
    display: flex;
	flex-direction: column;
	justify-content: center;
}
.sp-burger .wrapper-comtent_menu {
	width: 50%;
}
.txt-aori {
	font-size: 2.5vw;
}
}