@charset "utf-8";



/* -----------------------------------------------


仕切りセクション


----------------------------------------------- */

.section--divider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  padding: 0;
}

.divider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/divider-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

/* -----------------------------------------------


共通


----------------------------------------------- */


.section__inner {
  max-width: 1140px;
  margin: 0 auto;
}



/* -----------------------------------------------


ヘッダー


----------------------------------------------- */


.header {
  position: fixed;
  width: 100%;
  z-index: 99999;
}

.header__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 30px 40px;
}

.header__logo {
  width: auto;
  height: 90px;
}

.header__logo img {
  height: 100%;
  object-fit: contain;
}

.header__nav .nav__list {
  display: inline-flex;
  gap: 60px;
  align-items: center;
}

.header__nav .nav__item a {
  font-weight: 500;
  font-size: 16px;
  display: block;
}


.header__nav .nav__item--sns a {
  width: 36px;
  height: 36px;
}


/* -----------------------------------------------


メニュー


----------------------------------------------- */

.section--menu {
  padding: 120px 0 240px;
}

.p_menu__note {
  text-align: center;
  margin-bottom: 60px;
  font-size: 16px;
}


.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.menu__item {
  width: calc(50% - 30px);
}

.menu__item img {
  height: 428px;
}

.menu__detail {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.menu__name,
.menu__price {
  font-weight: 500;
  font-size: 18px;
}



/* -----------------------------------------------


店舗情報


----------------------------------------------- */

.info__wrap {
  display: flex;
  gap: 70px;
  align-items: center;
}

.info__left {
  flex: 1;
}

.info__table .info__row {
  display: flex;
  justify-content: start;
  gap: 25px;
  border-bottom: 1px solid #3D3D3D;
  padding-bottom: 10px;
}

.info__table .info__row:not(:last-of-type) {
  margin-bottom: 15px;
}

.info__table dt,
.info__table dd {
  font-size: 18px;
  line-height: 1.75;
}

.info__table dt {
  font-weight: 500;
  width: 120px;
}

.info__right {
  background-color: gray;
  width: 600px;
  height: 430px;
  flex-shrink: 0;
}

.info__right iframe {
  width: 100%;
  height: 100%;
}


/* -----------------------------------------------


インスタグラム


----------------------------------------------- */

.section--insta {
  background-color: #C0AB99;
  padding: 100px 0;
}

.section--insta .section__title-en {
  font-size: 40px;
}

.insta__wrap {
  max-width: 400px;
  margin: 0 auto;
}

.insta__link {
  background-color: #F7EFE8;
  color: #927B68;
  max-width: 400px;
  margin: 40px auto 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  padding: 1.25em;
  display: block;
  border-radius: 3em;
  text-align: center;
}

/* -----------------------------------------------


フッター


----------------------------------------------- */

.footer {
  padding: 100px 0;
}

.footer__logo {
  text-align: center;
  width: auto;
  height: 130px;
  margin: 0 auto;
}

.footer__logo img {
  height: 100%;
  object-fit: contain;
}


@media (max-width: 1024px) {

  /* 共通 */
  .section {
    padding: 100px 0;
  }

  .section__inner {
    width: 90%;
  }


  /* header */
  .header__inner {
    padding: 25px 30px;
    align-items: center;
  }

  .header__logo {
    height: 80px;
  }

  .header__nav .nav__list {
    gap: 40px;
  }


  /* menu */
  .menu__list {
    gap: 40px;
  }

  .menu__item {
    width: calc(50% - 20px);
  }

  .menu__item img {
    height: 360px;
  }

  /* info */
  .info__wrap {
    gap: 40px;
  }

  .info__right {
    width: 450px;
    height: 350px;
  }

  .info__table dt,
  .info__table dd {
    font-size: 16px;
  }

  /* insta */
  .insta__link {
    font-size: 20px;
  }

  .footer {
    padding: 80px 0;
  }

}




@media (max-width: 767px) {

  /* 共通 */
  .section {
    padding: 80px 0;
  }


  /* header */
  .header {
    background-color: #fff;
  }

  .header__logo {
    height: 70px;
  }

  .header__inner {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0 0;
    align-items: center;
    position: relative;
  }

  .header__nav {
    width: 100%;
  }

  .header__nav .nav__list {
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    width: 100%;
  }

  .header__nav .nav__item {
    width: 33.33333%;
  }

  .header__nav .nav__item a {
    font-size: 13px;
    text-align: center;
    width: 100%;
    color: #F7EFE8;
    background-color: #422B1B;
    padding: 0.5em 0;
  }

  .header__nav .nav__item+li {
    border-left: 1px solid #F7EFE8;
  }

  .header__nav .nav__item--sns {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    border-left: 0 !important;
  }

  .header__nav .nav__item--sns a {
    width: 30px;
    height: 30px;
    background-color: transparent;
    padding: 0;

  }

  .header__logo {
    width: 140px;
  }


  /* menu */
  .section--menu {
    padding: 80px 0 100px;
  }

  .p_menu__note {
    font-size: 13px;
  }

  .menu__list {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .menu__item {
    width: 100%;
    max-width: 280px;
  }

  .menu__item img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
  }

  .menu__detail {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .menu__name,
  .menu__price {
    font-size: 14px;
  }

  /* info */
  .info__wrap {
    flex-direction: column;
  }

  .info__left {
    width: 100%;
  }

  .info__right {
    width: 100%;
    height: 300px;
  }

  .info__table dt {
    width: 90px;
    font-size: 14px;
  }

  .info__table dd {
    font-size: 14px;
  }

  /* insta */
  .section--insta {
    padding: 80px 0;
  }

  .insta__link {
    font-size: 15px;
    padding: 1em;
    width: 80%;
  }

  /* footer */
  .footer {
    padding: 40px 0 !important;
  }

  .footer__logo {
    height: 80px;
  }
}