@charset "UTF-8";
/*==============================
サイト共通
==============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.75;
  font-size: 16px;
}

img {
  width: 100%;
}

.inner {
  max-width: 100%;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1020px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 768px) {
  .pc-hidden {
    display: none;
  }
}

.sp-hidden {
  display: none;
}
@media (min-width: 768px) {
  .sp-hidden {
    display: block;
  }
}

.section-title {
  font-size: 24px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 40px;
}
.section-title-white {
  color: #fff;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
    margin-bottom: 48px;
  }
}

.button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1;
  padding: 18px 87.5px;
  text-align: center;
  position: relative;
  border: 1px solid currentColor;
  transition: all ease 0.3s;
}
.button::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .button:hover {
    background-color: #fff;
    color: #000;
  }
  .button:hover::after {
    background-color: #000;
  }
}

.button-white {
  background-color: #fff;
  color: #000;
  border: 1px solid currentColor;
}
.button-white::after {
  background-color: #000;
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .button-white:hover {
    background-color: #000;
    color: #fff;
  }
  .button-white:hover::after {
    background-color: #fff;
  }
}

/*==============================
header
==============================*/
.header-inner {
  padding-right: 0;
}

.sp-header-top {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 18px;
}

.sp-header-logo img {
  width: 120px;
}

.sp-header-button {
  padding: 14px 21.5px;
  background-color: #524433;
}
.sp-header-button a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  display: block;
}

.sp-header-nav {
  background-color: #524433;
  overflow: scroll;
  padding-left: 0;
}

.sp-header-list {
  display: flex;
  justify-content: center;
}

.sp-header-item {
  padding: 14px 16px;
  position: relative;
}
.sp-header-item:last-child::after {
  display: none;
}
.sp-header-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background-color: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sp-header-link {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.pc-header {
  padding-left: 24px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pc-header-logo img {
  width: 200px;
}

.pc-header-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.pc-header-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.pc-header-link {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  color: #524433;
  position: relative;
  padding-bottom: 10px;
}
.pc-header-link::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background-color: #524433;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  opacity: 0;
  transition: all ease 0.3s;
}
.pc-header-link:hover::after {
  bottom: 0;
  opacity: 1;
}

.pc-header-button a {
  display: block;
  padding: 14.5px 20px;
  color: #fff;
  background-color: #524433;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0.08em;
}

/*==============================
top-menu
==============================*/
.top-concept {
  padding: 64px 0;
}

.top-concept-texts {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .top-concept-texts {
    margin-top: 48px;
  }
}

.top-concept-text-main {
  text-align: center;
}
@media (min-width: 768px) {
  .top-concept-text-main {
    font-size: 20px;
  }
}

.top-concept-text {
  font-size: 14px;
  line-height: 2;
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .top-concept-text {
    margin-top: 32px;
    font-size: 16px;
  }
}

.top-concept-button {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .top-concept-button {
    margin-top: 48px;
  }
}

/*==============================
top-menu
==============================*/
.top-menu {
  padding: 64px 0;
  background: url(../img/sp/bg-top-menu-sp.jpg) no-repeat center center/cover;
  color: #fff;
}
@media (min-width: 768px) {
  .top-menu {
    padding: 80px 0;
    background: url(../img/bg-top-menu.jpg) no-repeat center center/cover;
  }
}

@media (min-width: 768px) {
  .top-menu-inner {
    max-width: 1140px;
  }
}

.top-menu-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .top-menu-items {
    flex-direction: row;
    gap: 62px;
  }
}

@media (min-width: 768px) {
  .top-menu-item {
    width: 47.1296296296%;
  }
}

.top-menu-item-title {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .top-menu-item-title {
    font-size: 20px;
  }
}

.top-menu-price-dl {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.top-menu-price-dl:first-child {
  padding-top: 10px;
}

.top-menu-name {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 768px) {
  .top-menu-name {
    font-size: 16px;
  }
}

.top-menu-price {
  font-size: 16px;
}

.top-menu-button {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .top-menu-button {
    margin-top: 48px;
  }
}

/*==============================
top-shop-list
==============================*/
.top-shop-list {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .top-shop-list {
    padding: 80px 0;
  }
}

.top-shop-list-text {
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .top-shop-list-text {
    font-size: 16px;
  }
}

.top-shop-list-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
}
@media (min-width: 768px) {
  .top-shop-list-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 24px;
    width: 728px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }
}

.top-shop-list-item {
  font-size: 14px;
  line-height: 1;
  padding: 15.5px 49.5px;
  text-align: center;
  background-color: #efede9;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .top-shop-list-item {
    font-size: 16px;
    padding: 19.5px 10px;
  }
}

.top-shop-list-button {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .top-shop-list-button {
    margin-top: 48px;
  }
}

/*==============================
separate
==============================*/
/*==============================
top-blog
==============================*/
.top-blog {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .top-blog {
    padding: 80px 0;
  }
}

.top-blog-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .top-blog-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.top-blog-text-contents {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .top-blog-text-contents {
    margin-top: 20px;
  }
}

.top-blog-date {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #524433;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .top-blog-date {
    font-size: 14px;
  }
}

.top-blog-title {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.top-blog-button {
  text-align: center;
  margin-top: 40px;
}

/*==============================
sns
==============================*/
.sns {
  padding: 64px 0;
  background-color: #efede9;
}

.sns-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 9px;
}
@media (min-width: 768px) {
  .sns-images {
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
  }
}

.sns-button {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .sns-button {
    margin-top: 48px;
  }
}

/*==============================
footer
==============================*/
.footer {
  padding: 64px 0 16px;
  background-color: #524433;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 80px 0 24px;
  }
}

.footer-logo img {
  width: 120px;
}
@media (min-width: 768px) {
  .footer-logo img {
    width: 200px;
  }
}

.footer-shop-list {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .footer-shop-list {
    margin-top: 40px;
    font-size: 16px;
  }
}

.footer-info {
  margin-top: 24px;
}

.footer-info-name {
  font-size: 12px;
  line-height: 1;
}

.footer-info-address {
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

.footer-copyright {
  margin-top: 64px;
}

.copyright {
  font-size: 12px;
  line-height: 1;
}

/*==============================
page-head
==============================*/
.page-head {
  height: 180px;
}
@media (min-width: 768px) {
  .page-head {
    height: 460px;
  }
}

.page-head-inner {
  position: relative;
  height: 100%;
}

.page-head-title {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .page-head-title {
    font-size: 36px;
  }
}

.concept-page-head {
  background: url(../img/bg-consept-kv.jpg) no-repeat center center/cover;
}

.menu-page-head {
  background: url(../img/bg-menu-kv.jpg) no-repeat center center/cover;
}

.shoplist-page-head {
  background: url(../img/bg-shoplist-kv.jpg) no-repeat center center/cover;
}

.blog-page-head {
  background: url(../img/bg-blog-kv.jpg) no-repeat center center/cover;
}

.error-page-head {
  background: url(../img/bg-error-kv.jpg) no-repeat center center/cover;
}

/*==============================
concept
==============================*/
.concept {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .concept {
    padding: 80px 0;
  }
}

.concept-texts {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .concept-texts {
    padding: 48px 0;
  }
}

.concept-main-text {
  font-size: 16px;
  line-height: 1.74;
  text-align: center;
}
@media (min-width: 768px) {
  .concept-main-text {
    font-size: 20px;
  }
}

.concept-text {
  margin-top: 24px;
  text-align: center;
  line-height: 2;
}
@media (min-width: 768px) {
  .concept-text {
    margin-top: 32px;
  }
}

/*==============================
menu
==============================*/
.menu {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .menu {
    padding: 80px 0;
  }
}

.menu-message-main {
  text-align: center;
}
@media (min-width: 768px) {
  .menu-message-main {
    font-size: 20px;
  }
}

.menu-message {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .menu-message {
    font-size: 16px;
  }
}

.menu-items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .menu-items {
    margin-top: 48px;
  }
}

@media (min-width: 768px) {
  .menu-item {
    display: flex;
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .menu-item-image {
    width: 29.1666666667%;
  }
}

.menu-item-text-contents {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .menu-item-text-contents {
    flex: 1;
  }
}

.menu-item-name {
  line-height: 1;
}
@media (min-width: 768px) {
  .menu-item-name {
    font-size: 20px;
  }
}

.menu-item-price {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 768px) {
  .menu-item-price {
    margin-top: 16px;
    font-size: 16px;
  }
}

.menu-item-text {
  margin-top: 12px;
  line-height: 2;
}
@media (min-width: 768px) {
  .menu-item-text {
    margin-top: 24px;
  }
}

/*==============================
shoplist
==============================*/
.shoplist {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .shoplist {
    padding: 80px 0;
  }
}

.shoplist-inner {
  max-width: 1260px;
}

.shoplist-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .shoplist-items {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px 99px;
  }
}

@media (min-width: 768px) {
  .shoplist-item {
    display: flex;
    gap: 24px;
    max-width: 501px;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .shoplist-image {
    width: 56.8862275449%;
  }
}

.shoplist-text-contents {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 768px) {
  .shoplist-text-contents {
    width: 38.3233532934%;
    margin-top: 0;
  }
}

.shoplist-name {
  line-height: 1.55;
}
@media (min-width: 768px) {
  .shoplist-name {
    font-size: 20px;
  }
}

.shoplist-address {
  font-size: 12px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .shoplist-address {
    font-size: 14px;
  }
}

.shoplist-tel {
  font-size: 18px;
  line-height: 1.55;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 768px) {
  .shoplist-tel {
    font-size: 22px;
  }
}

.shoplist-time {
  font-size: 12px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .shoplist-time {
    font-size: 14px;
  }
}

.shoplist-seat {
  font-size: 12px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .shoplist-seat {
    font-size: 14px;
  }
}

.shoplist-smoke {
  font-size: 12px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .shoplist-smoke {
    font-size: 14px;
  }
}

/*==============================
blog
==============================*/
.blog {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .blog {
    padding: 80px 0;
  }
}

.blog-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .blog-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
  }
}

.blog-text-contents {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .blog-text-contents {
    margin-top: 20px;
  }
}

.blog-date {
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #524433;
}
@media (min-width: 768px) {
  .blog-date {
    font-size: 14px;
  }
}

.blog-title {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .blog-title {
    font-size: 22px;
  }
}

.pagenation {
  margin-top: 40px;
}

.pagenation-list {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagenation-item {
  width: 32px;
  height: 32px;
  color: #000;
  border: 1px solid currentColor;
  text-align: center;
  position: relative;
}
.pagenation-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}
.pagenation-item.is-page {
  background-color: #000;
  color: #fff;
}

/*==============================
single
==============================*/
.single {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .single {
    padding: 80px 0;
  }
}

.single-date {
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  color: #524433;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .single-date {
    margin-top: 24px;
  }
}

.single-title {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .single-title {
    font-size: 26px;
  }
}

.single-main {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .single-main {
    margin-top: 48px;
  }
}
.single-main p {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 768px) {
  .single-main p {
    font-size: 16px;
  }
}
.single-main p + p {
  margin-top: 32px;
}

/*==============================
error
==============================*/
.error {
  padding: 64px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .error {
    padding: 80px 0;
  }
}

.error-text {
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 768px) {
  .error-text {
    font-size: 16px;
  }
}

.error-button {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .error-button {
    margin-top: 48px;
  }
}/*# sourceMappingURL=style.css.map */