/* Reset CSS */
:root {
  --primary-color: #fbc600;
  --secondary-color: #fcede4;
  --four-color: #900000;
  --font-color: #231815;
  --bk-color: #231815;
  --wt-color: #fff;
  --fs-10px: 10px;
  --fs-12px: 12px;
  --fs-13px: 13px;
  --fs-14px: 14px;
  --fs-16px: 16px;
  --fs-17px: 17px;
  --fs-18px: 18px;
  --fs-19px: 19px;
  --fs-20px: 20px;
  --fs-21px: 21px;
  --fs-22px: 22px;
  --fs-23px: 23px;
  --fs-24px: 24px;
  --fs-25px: 25px;
  --fs-26px: 26px;
  --fs-27px: 27px;
  --fs-28px: 28px;
  --fs-30px: 30px;
  --fs-31px: 31px;
  --fs-34px: 34px;
  --fs-36px: 36px;
  --fs-38px: 38px;
  --fs-40px: 40px;
  --fs-58px: 58px;
  --yugo-m: 'yugo-m', sans-serif;
  --yugo-b: 'yugo-b', sans-serif;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html,
body {
  height: 100%;
  font-family: var(--yugo-m), “Helvetica Neue”, Helvetica, Arial, “Yu Gothic”, “游ゴシック”, YuGothic, Meiryo, sans-serif;

}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: var(--yugo-b);
  letter-spacing: 0.02em;

}


a:hover {
  opacity: 0.6;
  transition: all 0.8s ease;
}

@font-face {
  font-family: 'yugo-m';
  font-weight: 400;
  src: url('/assets/font/yugo-m.woff') format('woff2'), url('/assets/font/yugo-m.woff') format('woff');
}

@font-face {
  font-family: 'yugo-b';
  font-weight: 600;
  src: url('/assets/font/yugo-b.woff') format('woff2'), url('/assets/font/yugo-b.woff') format('woff');
}



.container {
  width: 90%;
  max-width: 930px;
  margin: auto;
  padding: 0 15px;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 9999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
  cursor: pointer;

  /* フェード用（初期は非表示） */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease;

  /* 非表示時はクリック無効化 */
  pointer-events: none;
}

/* 表示状態（100px超えで付与） */
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* フォーカス/ホバー */
.back-to-top:hover {
  filter: brightness(1.1);
}

.back-to-top:focus-visible {
  outline: 2px solid #4da3ff;
  outline-offset: 2px;
}

/* アニメーションを苦手とする環境配慮 */
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}


/* fade */

.fade-in-up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 子要素をパラパラ表示 */
.fade-in-up.is-visible>* {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hamburger button (always fixed) */
.hamburger {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 20px;
  display: grid;
  place-items: end;
  border: none;
  z-index: 1001;
  /* navより上 */
  cursor: pointer;
  background: transparent;
}

.hamburger .bar {
  display: block;
  height: 2px;
  background: var(--bk-color);
  margin: 3px 0;
  transition: transform .25s ease, opacity .25s ease, width .25s ease;
}

.hamburger .bar:nth-child(1) {
  width: 42px;
}

.hamburger .bar:nth-child(2) {
  width: 20px;
}

.hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  background-color: var(--wt-color);
}

.hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  width: 0;
  background-color: var(--wt-color);
}

.hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);

}


/* ===== Nav base */
.nav.is-open {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}

.nav.is-open .nav-inner {
  transform: translateX(0);
}












/* Header */
header {
  position: relative;
  background: var(--primary-color);
  display: flex;
  align-items: flex-end;
  padding: 20px 20px 20px 30px;
}

header nav {
  margin-left: auto;

}

header nav ul {
  display: flex;
  align-items: center;

}

header nav .nav-inner {
  display: flex;
}

header nav .nav-inner ul:first-child li {
  font-family: var(--yugo-b);
  border-right: 1px solid var(--bk-color);

}

header nav .nav-inner ul:first-child li:last-child {
  border-right: none;
}

header nav .nav-inner ul:first-child li a {
  display: block;
  padding: 0 clamp(5px, 1.5vw, 40px);
  font-size: clamp(var(--fs-10px), 1.1vw, var(--fs-20px));
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

header nav .nav-inner ul:first-child li a span {
  display: block;
  font-size: clamp(var(--fs-10px), 1vw, var(--fs-14px));
  margin-top: 5px;
  letter-spacing: 0;
  ;
}

.blanklink {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
}

.blanklink .btn-cta {
  background: var(--four-color);
  color: var(--wt-color);
  border-radius: 10px;
  padding: 10px;
  padding-left: 1.5em;
  width: clamp(100px, 12vw, 140px);
  display: block;
  text-align: center;
  font-size: clamp(var(--fs-10px), 1.2vw, var(--fs-19px));
  font-family: var(--yugo-b);

}
.blanklink.splist{
  display: none;
}


.blanklink .sns img {
  width: clamp(25px, 3vw, 45px);
  box-sizing: border-box;
}
.blanklink .sns2 img {
  width:clamp(23px, 2.7vw, 40px);
  box-sizing: border-box;
}

/*kv*/
.swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

/*section*/
section h2 {
  text-align: center;
  display: flex;
  margin: auto;
  justify-content: center;
  flex-direction: column;
}

section h2 img {
  text-align: center;
  margin: auto;
}

section h2 span {
  display: block;
  text-align: center;
  margin: auto;
  margin-bottom: 10px;
}

section .dotlist li {
  position: relative;
  padding-left: 12px;
  line-height: 1.6;
  margin-bottom: 10px;
}

section .dotlist li::before {
  content: "";
  width: 3px;
  height: 3px;
  border: 1px solid var(--font-color);
  background-color: var(--font-color);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 17px;
  font-size: var(--fs-12px);
  line-height: 1.6;

}

/* lead */
#lead {
  position: relative;
  padding: 48px 0;
}

#lead h2 {
  font-size: clamp(var(--fs-20px), 2.4vw, var(--fs-36px));

}

#lead h2 span {
  margin: 0;
}

#lead h3 {
  font-size: clamp(var(--fs-17px), 1.8vw, var(--fs-20px));
  text-align: center;
  margin: 20px auto;
  line-height: 1.8;
  font-family: var(--yugo-m);
  font-weight: 400;
}

#lead h4 {
  font-size: clamp(var(--fs-17px), 2vw, var(--fs-22px));
  text-align: center;
  font-family: var(--yugo-b);
  margin-top: 10px;
  color: var(--font-color);
  border: 2px solid var(--primary-color);
  border-radius: 28px;
  max-width: 713px;
  margin-top: 30px;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
}


/* Footer */
footer {
  text-align: center;
  margin: auto;
  padding: 20px 0 20px;
  background-color: var(--bk-color);
  color: var(--wt-color);
}

footer .footerlogo {
  margin: 60px 0 30px;

}

footer .footerlogo img {
  display: block;
  margin: auto;
  text-align: center;
}

footer .copy {
  font-size: var(--fs-10px);
  letter-spacing: 0.03em;

  margin-top: 30px;
}

footer #footernav ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

footer #footernav ul li:first-child {
  border-left: 1px solid var(--wt-color);
}

footer #footernav ul li {
  line-height: 1;
  border-right: 1px solid var(--wt-color);

}

footer #footernav ul li a {
  padding: 0 clamp(10px, 2vw, 40px);
  display: block;
  line-height: 1;
  font-size: clamp(var(--fs-10px), 1.5vw, var(--fs-20px));
  font-family: var(--yugo-b);
}

footer #footernav ul span {
  display: block;
  font-size: var(--fs-14px);
  margin-top: var(--fs-10px);
  ;
}




.is_sp {
  display: none;
}

.is_pc {
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;

}

.floating {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(env(safe-area-inset-bottom, 0) + 0px);
  display: none;
  justify-content: center;
  transform: translateY(100%);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/*kv*/
#kv {
  position: relative;
  overflow: hidden;
  background: var(--bk-color);
}

#kv .kvbox {
  position: relative;
  text-align: center;
  color: var(--wt-color);
  padding-bottom: 40px;

}

#kv .kvimg {
  position: relative;
  margin:85px auto 70px ;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 1240px;
  height: 660px;
  padding: 90px 50px;
  border-radius: 50px;

}


#kv .kvhead ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#kv .kvhead {
  position: absolute;
  top: 40px;
}

#kv .kvfooter {
  position: absolute;
  bottom: 5%;
}

#kv .kvbox .kviner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;


  margin: 0 auto;
}

#kv .kvbox .kviner h1 {
  margin-bottom: 13px;
}

#kv .kvbox .kviner .btn-kvmenu a {
  border: 1px solid var(--wt-color);
  border-radius: 10px;
  display: block;
  font-size: var(--fs-13px);
  padding: 10px;
  position: relative;
  width: 185px;
  display: flex;
  justify-content: center;
  font-family: var(--yugo-b);
}

.btn-kvmenu a img {
  margin-left: 10px;
}


/*borderhead*/

.borderhead {
  position: relative;
  margin-bottom: 40px;
}

.borderhead span {
  text-align: center;
  display: block;
  margin: auto;
  background: var(--bk-color);
  width: fit-content;
  z-index: 2;
  position: relative;
  padding: 0 30px;
}

.borderhead::before,
.borderhead::after {
  content: '';
  background: var(--four-color);
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 1;
}

.borderhead::before {
  top: 15px;
}

.borderhead::after {
  bottom: 15px;
}

.bgw span,
.bgw2 span {
  background: var(--wt-color);
}

.borderhead.bgw::before {
  top: 13px;
}

.borderhead.bgw::after {
  bottom: 60px;
}

.borderhead.bgw2::before {
  top: 15px;
}

.borderhead.bgw2::after {
  bottom: 53px;
}

/*menu*/


.btn-otmenu {
  text-align: center;
  background: transparent;
  border: 2px solid var(--bk-color);
  font-size: clamp(var(--fs-13px), 1.5vw, var(--fs-19px));
  position: relative;
  padding: 11px 40px;
  border-radius: 10px;
  display: flex;
  width: fit-content;
  margin: 40px auto;
  font-family: var(--yugo-b);
}

.btn-otmenu img {
  margin-left: 10px;
}

#menu .menuhead {
  text-align: center;
  margin-bottom: 50px;
  height: 426px;
  background: url('/assets/img/1.5x/grand-menu-bg_1@1.5x.png') no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

#menu {
  padding: 0px 0 0px;
  color: var(--font-color);
}

#menu .container article {
  margin-bottom: 120px;
}

/*yakiniku*/
#menu .yakiniku {
  margin-top: 70px;
}

#menu .yakiniku .menu1 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  column-gap: 20px;
}

#menu .yakiniku .menu1 ul li {
  text-align: center;
  font-size: var(--fs-19px);
  font-family: var(--yugo-b);
  line-height: 1.4;
}

#menu .yakiniku .menu1 ul li span {
  display: block;
  margin-top: 10px;
}

#menu .drink h2+img {
  margin-bottom: 50px;
}

/*about*/
#about {
  padding: 90px 0 100px;
  background: var(--four-color);
  color: var(--wt-color);
}

#about h2 {
  margin-bottom: 50px;
}

#about .aboutimage {
  display: flex;
  gap: 20px;
  justify-content: space-between;

}

#about .aboutimage li {
  position: relative;
}

#about .aboutimage .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-block;
  font-feature-settings: "palt";
}



#about h3 {
  text-align: center;
  font-size: clamp(var(--fs-18px), 2vw, var(--fs-28px));
  margin: 30px 0;
  ;
}

#about h3+p {
  text-align: center;
  margin-top: 20px;
  font-size: clamp(var(--fs-16px), 2vw, var(--fs-22px));
}

/* add202512*/
#about .aboutshoplist {
  display: flex;
  gap: 3em;
  justify-content: center;
  margin-top: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#about .aboutshoplist li{
  width: 50%;
  text-align: center;
}
#about .aboutshoplist li span{
  display: block;
  font-size: var(--fs-14px);
  margin-bottom: 16px;
}
#about .aboutshoplist li a{
  display: block;
  background: var(--bk-color);
  text-align: center;
  padding: 25px 10px;
  border-radius: 15px;
  font-size: clamp(14px,1.7vw,19px);
  font-weight: bold;
  font-family: var(--yugo-b);
}
/* information */
#information {
  padding: 130px 0 120px;
  background: var(--bk-color);
  color: var(--wt-color);
}

#information h2 {
  margin-bottom: 75px;
}

#information .tempo article .borderhead {
  position: relative;
  margin-bottom: 40px;
  ;
}




#information .tempo article .tempogallery li:nth-child(1) {
  grid-area: a;
}

#information .tempo article .tempogallery li:nth-child(2) {
  grid-area: b;
}

#information .tempo article .tempogallery li:nth-child(3) {
  grid-area: c;
}

#information .tempo article .tempogallery li:nth-child(4) {
  grid-area: d;
}

#information .tempo article .tempogallery li:nth-child(5) {
  grid-area: e;
}

#information .tempo article .tempogallery li:nth-child(6) {
  grid-area: f;
}

#information .tempo article .tempogallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "a a a b b b" "c c d d e e";
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

#information .tenpocontact {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: space-between;
  align-items: flex-end;

}

#information .tenpocontact dl:not(:first-child) {
  display: flex;
}

#information .tenpocontact dl:first-child {}

#information .tenpocontact dl:first-child dt {
  font-size: clamp(var(--fs-19px), 2vw, var(--fs-24px));
  font-family: var(--yugo-b);
  line-height: 1;
  margin-bottom: 15px;
}

#information .tenpocontact dl:first-child dd {
  font-size: clamp(var(--fs-16px), 1.8vw, var(--fs-22px));
  line-height: 1;
}

#information .tenpocontact dl:nth-child(2) dt {
  font-size: clamp(var(--fs-25px), 3vw, var(--fs-34px));
  font-family: var(--yugo-b);
  position: relative;
  line-height: 1;
  ;
}

#information .tenpocontact dl:nth-child(2) dt a {
  position: relative;
  padding-left: 30px;
}

#information .tenpocontact dl:nth-child(2) dt a::before {
  content: '';
  background: url('/assets/img/SVG/icon-tel1.svg') no-repeat center;
  display: block;
  width: 25px;
  height: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
}

#information .tenpocontact dl:nth-child(3) {
  gap: 15px;
  align-items: baseline;
}
#information .tenpocontact dl:nth-child(3) dd{
  margin-left: 6px;
}

/* reservre */
#reserve {
  background-color: var(--primary-color);
  text-align: center;
  padding: 80px 0 90px;
}

#reserve .reserveinner {
  margin-top: 50px;
}

#reserve .reserveinner dt {
  font-family: var(--yugo-b);
  margin-bottom: 10px;
  font-size: clamp(var(--fs-20px), 2.5vw, var(--fs-30px));
}

#reserve .reserveinner dd {
  display: inline-block;
  border-bottom: 3px solid var(--bk-color);
  text-underline-offset: 4px;
  line-height: 1.2;
}

#reserve .reserveinner dd a {
  position: relative;
  font-size: clamp(var(--fs-40px), 5vw, var(--fs-58px));
  font-family: var(--yugo-b);
  padding-left: 1em;
}

#reserve .reserveinner dd a::before {
  content: '';
  background: url('/assets/img/SVG/icon-tel2.svg') no-repeat center;
  display: block;
  width: 42px;
  height: 58px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.btn-taberogu {
  margin: 40px auto 0;
  display: block;
  background: var(--bk-color);
  color: var(--wt-color);
  border-radius: 10px;
  width: 215px;
  padding: 18px 5px 18px 20px;
  text-align: center;
  font-size: clamp(var(--fs-13px), 1.7vw, var(--fs-19px));
  font-family: var(--yugo-b);
}

/*commitment*/
#commitment {
  background: var(--primary-color);
  padding: 110px 0;
}

.comitcontainer {
  margin: 0 20px;
}

.comimgsection {
  max-width: 930px;
  margin: 80px auto 0;
}


#commitment .comitbox {
  background: url(/assets/img/1x/com-bgtmid_3.png) top center;
  background-size: 100%;
  max-width: 935px;
  margin: 80px auto 20px;

}

#commitment .comitinner {
  padding: 60px 130px;
}

#commitment .comitbox::before {
  content: '';
  background: url(/assets/img/1x/com-bgtop_2.png) no-repeat;
  height: 70px;
  width: 100%;
  display: block;
  background-size: 100%;
}

#commitment .comitbox::after {
  content: '';
  background: url(/assets/img/1x/com-bgtbottom_1.png) no-repeat;
  height: 70px;
  width: 100%;
  display: block;
  background-size: 100%;
}



#commitment .comitbox article {
  margin-bottom: 80px;
}

#commitment .comitbox article:last-child {
  margin-bottom: 0;

}

#commitment .comitbox article dl {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 50px;
}

#commitment .comitbox article dl .comitgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  flex-grow: 1;
}

#commitment .comitbox article dl .comitgrid .text {
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

#commitment .comitbox article dl dt {
  transform: translateY(-41px);
  width: 135px;
}

#commitment .comitbox article dl dt {}

#commitment .comitbox article dl dd {
  width: 490px;
}

/* media query */
@media(max-width:900px) {
  #information .tenpocontact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  body {
    font-feature-settings: "palt";
    text-align: justify;

  }
  .blanklink.splist{
    display: flex;
    margin: 0;
        transform: translateY(-21px);
        gap:20px;
    
  }
  

  .blanklink.splist .sns img {
    width: 37px;
}
.blanklink.splist .sns2 img {
  width: 32px;
}
  .borderhead::before,
  .borderhead::after {
    display: none;

  }

  /*nav*/
  nav.spnav ul li a {
    display: block;
    background: var(--four-color);
    color: var(--wt-color);
    font-size: var(--fs-18px);
    padding: 15px 10px;
  }

  nav.spnav ul li {
    font-family: var(--yugo-b);
    text-align: center;
    border-bottom: 1px solid var(--wt-color);
  }

  nav.spnav ul li:last-child {
    border: none;
  }

  nav.spnav ul li span {
    display: block;
    font-size: var(--fs-10px);

    font-family: var(--yugo-m);
  }

  footer {
    padding-top: 1px;
  }

  footer .copy {
    font-size: var(--fs-13px);
  }

  footer .footerlogo {
    width: 177px;
    margin: 40px auto 30px;
  }

  footer #footernav {
    display: none;

  }

  .container {
    width: 100%;
    padding: 0 20px;
  }

  .is_sp {
    display: inline;
  }

  .is_pc {
    display: none;
  }

  .borderhead {
    margin-bottom: 20px;
  }

  .btn-otmenu,
  .btn-taberogu {
    font-size: var(--fs-19px);
    letter-spacing: 0;

  }

  /*header*/
  header {
    padding: 10px;
  }

  header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  header .logo img {
    width: 175px;
  }

  #kv .kvbox .kviner h1 {
    margin-bottom: 15px;
  }

  #kv .kvhead {
    top: 24px;
  }

  header .headresv a {
    font-size: var(--fs-15px);
    letter-spacing: 0;
    line-height: 1.3;
    border-radius: 8px;
    text-align: center;
    background: var(--four-color);
    color: var(--wt-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    width: 64px;
    font-family: var(--yugo-b);
  }

  header .headresv a span {
    width: 2em;
    padding-top: 4px;
  }

  /*kv*/
  #kv .kvbox {
    padding: 0;
  }

  #kv .kvimg {
    width:85%;
    padding: 40px 25px 60px;
    border-radius: 30px;
    height: 450px;
    margin:40px 0 60px;
  }

  #kv .kvhead h1 img {
    width: 270px;
  }

  #kv .kvhead ul li:first-child {
    display: none;
  }

  #kv .kvbox .kviner .btn-kvmenu a {
    padding: 6px 10px;
  }

  #kv .kvfooter img {
    width: 210px;
  }

  #kv .kvfooter {
    bottom: 80px;
    margin-left: 10px;
  }

  .btn-kvmenu a img {
    margin-left: 4px;
  }

  /*menu*/

  #menu {
    padding: 0px 0 60px;
  }

  #menu .menuhead h2 img {
    width: 208px;
  }

  #menu .menuhead {
    height: 190px;
  }

  /*menu list*/
  #menu .yakiniku .menu1 ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
  }

  #menu .yakiniku .menu1 ul li span {
    font-size: var(--fs-12px);
    margin-top: 10px;
  }

  #menu .yakiniku {
    margin-top: 40px;
  }

  #menu .yakiniku a {
    margin-top: 30px;

  }

  #menu .container article.drink {
    margin-bottom: 0;
  }

  #menu .container article.meibutu {
    margin-top: 20px;
  }

  #menu .container article.yakiniku h2 img {
    width: 180px;
  }

  #menu .container article.meibutu h2 img {
    width: 150px;
  }

  #menu .container article.drink h2 img {
    width: 230px;
  }

  #menu .container article {
    margin-bottom: 60px;
  }

  .btn-re.btn-taberogu {
    margin-top: 40px;

  }

  /*about*/
  #about {
    padding: 60px 0;

  }

  #about .aboutimage {
    flex-direction: column;
    gap: 20px;
  }

  #about h2 img {
    width: 260px;
  }

  #about .aboutimage .caption {
    font-size: var(--fs-10px);
  }

  #about h3 {
    text-align: left;
    font-size: var(--fs-20px);
    margin: 20px 0;
  }

  #about h3+p {
    text-align: left;
    font-size: var(--fs-18px);
  }

  /*information*/
  #information {
    padding-bottom: 60px;
    padding-top: 80px;

  }

  #information h2 img {
    width: 180px;
  }

  #information .tempo article .tempogallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "a a" "c b" "d e";
    gap: 5px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  #information h2 {
    margin-bottom: 50px;
  }



  #information .tempo article .borderhead {
    margin-bottom: 20px;
  }

  #information .tenpocontact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #information .shoplogo1 {
    width: 150px;
    margin: auto;
  }

  #information .tenpocontact dl:nth-child(2) dt a::before {
    width: 21px;
    height: 29px;
  }

  #information .tenpocontact dl:nth-child(2) dt a {
    font-size: var(--fs-30px);
  }
  #information .tenpocontact dl:nth-child(1) dt img {
    width: 37px;
  }
  

  #information .tenpocontact dl:nth-child(3) dd img {
    width: 80px;
  }
  #information .tenpocontact dl:nth-child(3) dt img {
    width: 37px;
  }
  #information .tenpocontact dl:nth-child(3) dt+dt img {
    width: 30px;
  }

  /*reserve*/
  #reserve {
    padding: 50px 0 100px;
  }

  #reserve h2 img {
    width: 85px;
  }

  #reserve .btn-taberogu {
    width: 100%;
    max-width: 157px;
    padding: 14px 5px;
    padding-left: 1.3em;
    margin-top: 20px;
    font-size: var(--fs-13px);

  }

  #reserve .reserveinner dd a {
    font-size: var(--fs-38px);
  }

  #reserve .reserveinner dd a::before {
    width: 27px;
    height: 37px;

  }

  #reserve .reserveinner dd a {
    padding-left: .9em;

  }

  #reserve .reserveinner {
    margin-top: 40px;
  }

  /*commit*/
  #commitment .comitinner {
    padding: 20px 33px 20px 40px;
  }

  .comimgsection {
    margin: 40px auto 0px;
  }

  #commitment .comitbox {
    margin: 40px auto 20px;
  }

  #commitment h2 {
    width: 204px;
  }

  #commitment .comitbox article dl {
    gap: 20px;
  }

  #commitment .comitbox article dl dt {
    transform: translateY(-20px);
    width: 135px;
  }

  #commitment .comitbox article {
    margin-bottom: 40px;
  }

  #commitment .comitbox::before {
    height: 37px;
  }

  #commitment .comitbox article dl .comitgrid {
    gap: 20px;
  }

  #commitment {
    padding: 60px 0;
  }

  #commitment .comitbox::after {
    content: '';
    background: url(/assets/img/1.5x/com-bgtbottom@1.5x.png) no-repeat bottom center;
    height: 35px;
    width: 100%;
    display: block;
    background-size: 100%;
  }

  #commitment .comitbox article dl .comitgrid .text {
    width: 100%;
    padding: 0 0 0 10px;
  }
  #about .aboutshoplist{
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    width: auto;
    max-width: 100%;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
  }
  #about .aboutshoplist li{
    width: 260px;
  }
  /*--------------------------------
  coursemenu
  --------------------------------*/
  #menu .container article.course h2 img {
    width: 210px;
}
}

@media (max-width: 520px) {
  
}

@media (768px <=width <=1366px) {
  #kv .kvimg{
    width: 86%;
  }
  }
@media (768px <=width <=1030px) {
  
  header {
    padding: 10px;
  }

  .logo img {
    width: 140px;
  }

  .blanklink {
    margin-left: 0;
    gap: 7px;
  }

  #reserve .reserveinner dd a::before {
    width: clamp(30px, 3vw, 40px);
    height: auto;
  }

  #information .tenpocontact dl:nth-child(2) dt a::before {
    width: clamp(20px, 3vw, 20px);
    height: auto;
  }
 

}

@media (max-width: 360px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}