/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

@font-face {
  font-family: 'DIN Light';
  src: url('../fonts/din-light.otf') format('opentype');
}

:root {
  --color-text: #614936;

  --font-din: 'DIN Light', sans-serif;
}
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Serif JP", sans-serif;
  font-feature-settings: "palt";
  color: var(--color-text);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
  &.is-noscroll {
    overflow: hidden;
  }
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #161f3e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb0 {
  margin-bottom: 0;
}

.tCenter {
  text-align: center;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  z-index: 100;
  transition: background-color 0.3s ease;
  @media screen and (max-width: 750px){
    height: 70px;
  }
  &.is-active {
    background-color: #a2a19b;
    mix-blend-mode: normal;
  }
}
.header {
  position: relative;
  z-index: 200;
}
.header__inner {
  position: fixed;
  top: 0px;;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 0 40px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    height: 70px;
    padding: 0 20px 0 15px;
  }
}
.logo {
  width: 180px;
  @media screen and (max-width: 750px){
    width: 120px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.header__menu {
  display: none;
  @media screen and (max-width: 750px){
    display: block;
    width: 42px;
  }
}
.header__navi {
  display: flex;
  align-items: center;
  li {
    margin-left: 27px;
  }
  a {
    font-size: 17px;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: #fff;
    &:before {
      content: "●";
    }
    &:hover {
      text-decoration: underline;
    }
  }
}
.header__contact {
  margin-left: 30px;
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    color: #fff;
    text-decoration: none;
    background-color: #39332c;
    font-size: 15px;
    letter-spacing: 0.15em;
  }
}

.spMenu {
  @media screen and (min-width: 751px){
    display: none !important;
  } 
  display: none;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 90px 15px 90px;
  z-index: 90;
  color: #fff;
}
.spMenu__filter {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  display: none;
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #7a7871;
  z-index: 80;
}
.spMenu__close {
  width: 42px;
  margin: 0 auto;
}
.spMenu__navi {
  margin-top: 30px;
  border-top: 2px dashed #dcdddd;
  a {
    display: block;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.15em;
    padding: 20px 0;
    text-decoration: none;
    color: #dcdddd;
    border-bottom: 2px dashed #dcdddd;
  }
}
.spMenu__logo {
  width: 156px;
  margin: 25px auto 0;
}
.spMenu__tel {
  margin-top: 20px;
  font-size: 25px;
  letter-spacing: 0.05em;
  text-align: center;
}
.spMenu__address {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 15px;
  text-align: center;
}
.spMenu__time {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 15px;
  line-height: 1.5;
  text-align: center;
}

.mv {
  padding-top: 100vh;
}
.mv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.mv__slider {
  .item {
    overflow: hidden;
    img {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
      transition: transform 6s linear;
    }
  }
  .animation {
    img {
      transform: scale(1.1);
    }
  }
}
.mv__content {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv__logo {
  width: 416px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    width: 280px;
  }
}
.mv__subtitle {
  width: 376px;
  margin: 100px auto 0;
  @media screen and (max-width: 750px){
    width: 300px;
  }
}
.mv__text {
  font-size: 18px;
  line-height: 2.3;
  letter-spacing: 0.15em;
  margin-top: 24px;
  text-align: center;
  color: #fff;
  @media screen and (max-width: 750px){
    font-size: 15px;
  }
}
.about {
  background-color: #fff;
  padding: 70px 20px 140px;
  @media screen and (max-width: 750px){
    padding: 60px 15px;
  }
}
.about__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    display: block;
  }
}
.about__left {
  width: 50%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.about__text {
  font-size: 18px;
  line-height: 2.3;
  letter-spacing: 0.025em;
  text-align: justify;
}
.aboutCapa {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 36px;
  }
}
.aboutCapa__item {
  width: 30.6%;
  text-align: center;
  @media screen and (max-width: 750px){
    width: calc(50% - 18px);
    &:first-child {
      margin: 0 10% 0;
    }
  }
}
.aboutCapa__tag {
  height: 2.6em;
  line-height: 1.3;
  font-size: 15px;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed var(--color-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
}
.aboutCapa__num {
  font-family: var(--font-din);
  font-size: 72px;
  line-height: 1;
  margin-top: 20px;
}
.about__right {
  width: 44%;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 40px;
  }
}
.about__btn {
  margin-top: 30px;
  a {
    width: 438px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-text);
    font-size: 15px;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
    &:hover {
      background-color: var(--color-text);
      color: #fff;
    }
    @media screen and (max-width: 750px){
      width: 100%;
    }
  }
}
.section-header {
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    height: 264px;
  }
  &:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    z-index: -1;
  }
  .section-header__title { 
    width: 100%;
    text-align: center;
    color: #fff;
    .ja {
      display: block;
      font-size: 35px;
      letter-spacing: 0.15em;
      @media screen and (max-width: 750px){
        font-size: 23px;
      }
    }
    .en {
      display: block;
      font-size: 18px;
      letter-spacing: 0.15em;
      @media screen and (max-width: 750px){
        font-size: 10px;
      }
    }
  }
}
.food__content {
  background-color: #fff;
  padding: 70px 20px 140px;
  @media screen and (max-width: 750px){
    padding: 30px 15px 60px;
  }
}
.food__row {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 50px;
  }
}
.food__clm {
  width: 46.5%;
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.foodBlock {

}
.foodBlock__title { 
  background-color: var(--color-text);
  color: #fff;
  font-size: 25px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 5px 0 8px;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
  small {
    font-size: 50%;
    position: relative;
    top: -0.2em;
    padding: 3px 0 6px;
  }
}
.foodBlock__list {
  margin-top: 24px;
  @media screen and (max-width: 750px){
    margin-top: 16px;
  }
  li {
    display: flex;
    justify-content: space-between;
    + li {
      margin-top: 10px;
      @media screen and (max-width: 750px){
        margin-top: 5px;
      }
    }
    &.-line {
      border-bottom: 1px solid var(--color-text);
    }
  }
}
.foodBlock__name {
  font-size: 18px;
  letter-spacing: 0.05em;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 15px;
  }
  &:after {
    content: "";
    flex: 1;
    margin-left: 8px;
    border-bottom: 1px dashed var(--color-text);
    @media screen and (max-width: 750px){
      margin-left: 4px;
    }
  }
  small {
    font-size: 70%;
    @media screen and (max-width: 750px){
      font-size: 60%;
    }
  }
  .ml {
    position: relative;
    &:after {
      content: attr(data-text);
      font-size: 13px;
      display: block;
      width: 10em;
      text-align: center;
      position: absolute;
      top: -1em;
      left: 50%;
      transform: translateX(-50%);
      @media screen and (max-width: 750px){
        font-size: 10px;
      }
    }
  }
}
.foodBlock__price {
  font-size: 20px;
  margin-left: 18px;
  white-space: nowrap;
  letter-spacing: 0.025em;
  @media screen and (max-width: 750px){
    font-size: 17px;
    margin-left: 4px;
  }
}
.foodBlock__thumb {
  margin-top: 10px;
  @media screen and (max-width: 750px){
    margin-top: 6px;
  }
}
.alacarte {
  width: 100%;
  max-width: 1000px;
  margin: 65px auto 0;
  @media screen and (max-width: 750px){
    margin: 50px 0px 0px;
  }
}
.alacarte__row {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    margin-top: 0px;
  }
}
.alacarte__clm {
  width: 46.5%;
  @media screen and (max-width: 750px){
    display: contents;
  }
  .foodBlock__list {
    @media screen and (min-width: 751px){
      margin-top: -5px;
      + .foodBlock__list {
        margin-top: 10px;
      }
    }
    @media screen and (max-width: 750px){
      margin-top: 16px;
      &.-list1 {
        order: 1;
      }
      &.-list2 {
        order: 3;
      }
    }
    li {
      + li {
        margin-top: 7px;
        @media screen and (max-width: 750px){
          margin-top: 5px;
        }
      }
    }
  }
  .foodBlock__thumb {
    margin-top: 0;
    @media screen and (max-width: 750px){
      order: 2;
      margin-top: 6px;
    }
  }
}
.drink {
  .food__clm {
    gap: 25px;
  }
  .foodBlock__list {
    margin-top: 10px;
  }
  @media screen and (max-width: 750px){
    .foodBlock__name {
      font-size: 13px;
    }
    .foodBlock__price {
      font-size: 15px;
    }
  }
  
}
.foodCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    margin-top: 10px;
  }
  &.-reverse {
    flex-direction: row-reverse;
  }
}
.foodCategory__icon {
  width: 34px;
  height: 34px;
  font-size: 18px;
  color: #fff;
  background-color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  @media screen and (max-width: 750px){
    width: 25px;
    height: 25px;
    font-size: 13px;
  }
}
.foodCategory__note {
  font-size: 16px;
  letter-spacing: 0.025em;
  @media screen and (max-width: 750px){
    font-size: 15px;
  }
}
.foodSoft {
  width: 100%;
  max-width: 1000px;
  margin: 25px auto 0;
}
.foodSoft__title {
  background-color: #857025;
  color: #fff;
  font-size: 31px;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 19px;
    padding: 3px 0 6px;
  }
}
.foodSoft__list {
  margin-top: 10px;
  li {
    display: flex;
    justify-content: space-between;
  }
  
}
.foodSoft__name {
  font-size: 18px;
  letter-spacing: 0.05em;
  @media screen and (max-width: 750px){
    font-size: 13px;
  }
}
.foodSoft__price {
  font-size: 20px;
  letter-spacing: 0.025em;
  @media screen and (max-width: 750px){
    font-size: 15px;
    white-space: nowrap;
    margin-left: 8px;
  }
}
.feed__content {
  background-color: #fff;
  padding: 70px 20px 140px;
  @media screen and (max-width: 750px){
    padding: 15px 15px 60px;
  }
}
.feed__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact__content {
  background-color: #fff;
  padding: 70px 20px 140px;
  @media screen and (max-width: 750px){
    padding: 30px 15px 60px;
  }
}
.contact__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact__h3 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.15em;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.tabelog {
  text-align: center;
  max-width: 470px;
  margin: 40px auto 0;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}
.contact__message {
  margin-top: 40px;
  line-height: 2.5;
  text-align: center;
  letter-spacing: 0.15em;
  @media screen and (max-width: 750px){
    margin: 20px -1em 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0em;
  }
}
.contactForm {
  margin-top: 50px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.contactForm__table {
  width: 100%;
  @media screen and (max-width: 750px){
    display: block;
    tbody, tr, th, td {
      display: block;
      width: 100%;
    }
  }
  th {
    border-top: 1px solid var(--color-text);
    width: 210px;
    position: relative;
    padding-top: 15px;
    font-size: 14px;
    letter-spacing: 0.05em;
    @media screen and (max-width: 750px){
      width: 100%;
    }
  }
  .required {
    display: inline-block;
    font-size: 12px;
    background-color: #e73562;
    color: #dcdddd;
    letter-spacing: 0.15em;
    width: 58px;
    padding: 1px 0;
    text-align: center;
    border-radius: 50vh;
    position: absolute;
    top: 15px;
    right: 5px;
  }
  td {
    border-top: 1px solid var(--color-text);
    padding-bottom: 18px;
    vertical-align: top;
    @media screen and (max-width: 750px){
      padding-top: 15px;
      border-style: none;
    }
  }
}
.form-text {
  width: 100%;
  background-color: #eeeae7;
  height: 50px;
  padding: 0 0.5em;
  border-style: none;
}
.form-textarea {
  width: 100%;
  background-color: #eeeae7;
  height: 150px;
  padding: 0.5em;
  border-style: none;
  @media screen and (max-width: 750px){
    height: 200px;
  }
}
.contactForm__btn {
  margin-top: 20px;
}
.btn-submit {
  -webkit-appearance: none;
  width: 350px;
  height: 50px;
  color: var(--color-text);
  font-size: 18px;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-text);
  border-radius: 25px;
  background-color: #fff;
  background: url(../img/arrow_right.svg) no-repeat calc(100% - 20px) center/10px;
  cursor: pointer;
  transition: all 0.3s;
  &:hover {
    background-color: var(--color-text);
    color: #fff;
  }
  @media screen and (max-width: 750px){
    width: 100%;
    background: url(../img/arrow_right.svg) no-repeat calc(100% - 12px) center/10px;
  }
}
.contactForm__note {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.055em;
  margin-top: 20px;
} 
.bottomNavi {
  display: none;
  @media screen and (max-width: 750px){
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      background-color: #39332c;
      height: 70px;
      text-decoration: none;
      .ja {
        font-size: 15px;
        letter-spacing: 0.15em;
      }
      .en {
        font-size: 6px;
        letter-spacing: 0.1em;
      }
    }
  }
}
.footer {
  background-color: var(--color-text);
}
.footer__inner {
  padding: 70px 20px 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  @media screen and (max-width: 750px){
    padding: 40px 15px;
    flex-direction: column;
  }
}
.footer__left {
  padding-right: 50px;
  margin-right: 25px;
  border-right: 1px solid #fff;
  text-align: center;
  @media screen and (max-width: 750px){
    margin: 0 0 40px;
    padding: 0;
    border-style: none;
  }
}
.footer__logo {
  width: 265px;
  @media screen and (max-width: 750px){
    width: 200px;
  }
}
.copyright {
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 10px;
    margin-top: 15px;
  }
}
.footer__right {
  @media screen and (max-width: 750px){
    text-align: center;
  }
}
.footer__tel {
  font-size: 30px;
  letter-spacing: 0.1em;
  @media screen and (max-width: 750px){
    font-size: 25px;
    letter-spacing: 0.05em;
  }
}
.footer__address {
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-top: 15px;
  }
}
.footer__time {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-top: 15px;
    line-height: 1.5;
  }
}
.map {
  @media screen and (max-width: 750px){
    padding-bottom: 70px;
  }
  iframe {
    width: 100%;
    height: 540px;
    @media screen and (max-width: 750px){
      height: 230px;
    }
  }
}