@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #aaa;
  --gray-color02: #f5f5f5;
  --primary-color: #40382b;
  --accent-color: #6db154;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 120px 0;
}

.l_header {
  z-index: var(--z-index-header);
  height: 80px;
  width: 100%;
  padding: 0 16px;
}

.is-home .l_header {
  position: absolute;
  top: 0;
  left: 0;
}

.is-sub .l_header {
  position: static;
  background: var(--primary-color);
  border-bottom: 2px solid var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l_header_logo {
  height: 100%;
}

.header_logo-link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_header_logo-icon {
  width: 160px;
  height: 80px;
  object-fit: cover;
}

.l_header_logo-icon:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.l_header-nav {
  position: fixed;
  z-index: var(--z-index-header);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 48px;
    position: static;
    transform: none;
  }
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

/* ---------- footer ---------- */
.l_footer {
  background-color: var(--primary-color);
  padding: 60px 16px;
}

.l_footer-logo {
  cursor: pointer;
  height: 100%;
}

.l_footer_logo-link {
  height: 100%;
  display: flex;
  justify-content: center;
}

.l_footer_logo-icon {
  width: 240px;
  height: 120px;
  object-fit: cover;
}

.l_footer_logo-icon:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.l_footer-inner {
  color: var(--white-color);
}

.l_footer-nav {
  margin-top: 32px;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_footer-nav {
    justify-content: center;
    gap: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer-nav {
    justify-content: center;
    gap: 64px;
    font-size: 16px;
  }
}
.l_footer_contact {
  margin-top: 32px;
}

.l_footer_contact-title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .l_footer_contact-title {
    font-size: 20px;
  }
}

.l_footer_contact-phone {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1;
  text-align: center;
  margin-top: 8px;
}

.l_footer_contact-email {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1;
  text-align: center;
}

.l_footer_instagram {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.l_footer_copyright {
  font-size: 12px;
  display: block;
  color: var(--white-color);
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
/* ------------ module ----------------- */
.m_opening {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-modal);
  background: var(--primary-color);

  align-items: center;
  justify-content: center;
}

.m_opening_txt-ravel {
  width: 100%;
  color: var(--white-color);
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.m_opening_txt {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1.6;
  overflow: hidden;
  text-align: center;
  z-index: var(--z-index-modal);
}

@media screen and (min-width: 1080px) {
  .m_opening_txt {
    font-size: 48px;
  }
}

.is-char {
  display: inline-block;
}

.m_opening_img-wrapper {
  opacity: 0;
  overflow: hidden;
  transform: translateX(80px) scale(0.95);
  width: 300px;
  z-index: var(--z-index-modal);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .m_opening_img-wrapper {
    width: 500px;
  }
}

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger:hover {
  transform: scale(1.2);
  transition: 0.5s;
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--white-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_link-txt {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 var(--white-color), 0 0 0 var(--white-color);
  transition: text-shadow 0.3s;
}

.m_link-txt:hover {
  text-shadow: 0 0 0 var(--white-color), 0 1.5em 0 var(--white-color);
}

.m_btn {
  width: 100%;
  height: 100%;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  background: var(--accent-color);
  color: var(--white-color);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
}

.m_btn:hover {
  color: var(--accent-color);
  background: var(--white-color);
  border: 2px solid var(--accent-color);
  transition: 0.2s;
}

.m_btn_link {
  display: inline-block;
  text-align: center;
}

.m_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px;
  gap: 8px;
}

.m_pagination_numbers {
  font-weight: bold;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7f7f7;
  background: var(--white-color);
}

.m_pagination_numbers:hover {
  background: var(--accent-color);
  color: var(--white-color);
  transition: 0.3s;
}

.m_pagination_numbers__current {
  color: var(--white-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
}

.m_pagination_numbers__current:hover {
  color: var(--accent-color);
  background: var(--white-color);
}

.m_pagination_numbers__between {
  font-size: 14px;
  padding: 0 12px;
  border: none;
}

.m_pagination_numbers__next {
  position: relative;
}

.m_pagination_numbers__next:hover {
  background: var(--accent-color);
  transition: 0.3s;
}

.m_pagination_numbers__next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translateY(-50%) rotate(45deg);
}

.m_pagination_numbers__next:hover:before {
  border-top: 1px solid var(--white-color);
  border-right: 1px solid var(--white-color);
  transition: 0.3s;
}

.m_shop-name {
  font-size: 20px;
  font-weight: bold;
  color: var(--white-color);
}

.m_access_address {
  font-size: 14px;
  color: var(--black-color);
}

.m_access-map {
  margin: 60px auto 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .m_access-map {
    width: 80%;
  }
}

@media screen and (min-width: 1080px) {
  .m_access-map {
    width: 100%;
  }
}

.m_access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.m_hover {
  position: relative;
  display: inline-block;
}

.m_hover::after {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 100%;
  background: var(--white-color);
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}

.m_hover:hover::after {
  transform: scale(1, 1);
}
/* ------------ top kv----------------- */
.top_kv {
  height: 400px;
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4)),
    url(../img/kv.jpg) center no-repeat / cover;
  background: linear-gradient(rgba(51, 51, 51, 0.4), rgba(51, 51, 51, 0.4));
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    height: 600px;
    overflow: hidden;
  }
}
.top_kv-inner {
  position: relative;
  height: 100%;
}

.top_kv-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-index-back);
  overflow: hidden;
}

.top_kv-slideshow_slide_img {
  object-fit: cover;
  height: 100%;
}

/* ------------ top_about----------------- */
.top_about {
  background: var(--primary-color);
}

.top_section_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_section_title {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .top_about_content {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1080px) {
  .top_about_content {
    width: 100%;
  }
}

.top_about_img-wrapper {
  margin-top: 32px;
}

.top_about_img {
  border-radius: 8px;
}

.top_about_txt-wrapper {
  margin-top: 32px;
  font-size: 0;
  display: inline-block;
}

.top_about_txt {
  font-size: 14px;
  color: var(--white-color);
  position: relative;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .top_about_txt {
    font-size: 18px;
  }
}

.top_about_txt-br {
  font-size: 14px;
  color: var(--white-color);
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_about_txt-br {
    font-size: 18px;
  }
}

.top_about_txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(50%);
  border-bottom: 2px dashed var(--accent-color);
}

.top_about_txt-br::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(-110%);
  border-bottom: 2px dashed var(--accent-color);
}

/* ------------ top_info----------------- */
.top_info {
  background-color: var(--gray-color);
}
.top_info_title {
  color: var(--black-color);
}

.top_info_list {
  margin: 32px auto;
}

@media screen and (min-width: 768px) {
  .top_info_list {
    width: 80%;
  }
}

@media screen and (min-width: 1080px) {
  .top_info_list {
    width: 100%;
  }
}

.top_info_item {
  background: var(--white-color);
  margin-top: 35px;
  box-shadow: 2px 2px 4px rgba(170, 170, 170, 0.3);
  cursor: pointer;
}

.top_info_item:hover {
  opacity: 0.8;
}

.top_info_item:first-child {
  margin-top: 0;
}

.top_info_link {
  display: flex;
  padding: 10px;
  gap: 16px;
  align-items: stretch;
}

.top_info_img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

@media screen and (min-width: 1080px) {
  .top_info_img {
    width: 120px;
  }
}

.top_info_img img {
  object-fit: cover;
  border-radius: 4px;
}

.top_info_content {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.top_info_text {
  margin-top: 8px;
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .top_info_text {
    font-size: 18px;
    display: flex;
    align-items: center;
  }
}
.top_info_date {
  font-size: 12px;
  margin-top: auto;
  align-self: flex-end;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.top_section_btn-wrapper {
  width: 240px;
  height: 60px;
  margin: 60px auto 0;
}
/* ------------ top menu ------------ */

.top_menu {
  background: var(--primary-color);
  text-align: center;
}

.top_menu_swiper {
  overflow: hidden;
  margin: 32px auto;
  width: 100%;
  max-width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_menu_swiper {
    width: 80%;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_swiper {
    width: 100%;
  }
}

.top_menu_swiper-wrapper {
  display: flex;
}

.top_menu_swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

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

.top_menu_swiper .swiper-button-prev,
.top_menu_swiper .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-color);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.top_menu_swiper:hover .swiper-button-prev,
.top_menu_swiper:hover .swiper-button-next {
  opacity: 1;
  pointer-events: auto;
}

.top_menu_swiper .swiper-button-prev::after,
.top_menu_swiper .swiper-button-next::after {
  display: none;
}

.top_menu_swiper .swiper-button-prev {
  transform: translateY(-50%) rotate(180deg);
  left: -2px;
}

.top_menu_swiper .swiper-button-next {
  right: -2px;
}

.top_menu_swiper .swiper-pagination {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.top_menu_swiper:hover .swiper-pagination {
  opacity: 1;
  pointer-events: auto;
}
.top_menu_swiper .swiper-pagination-bullet {
  background-color: var(--gray-color);
  opacity: 0.4;
  width: 24px;
  height: 4px;
  border-radius: 0;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.top_menu_swiper .swiper-pagination-bullet-active {
  background-color: var(--white-color);
  opacity: 1;
  width: 32px;
  height: 4px;
}

/* ------------ top access ------------ */

.top_access {
  background-color: var(--gray-color);
}

.top_access_title {
  color: var(--black-color);
  margin: 0 auto;
  font-size: 32px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .top_access_txt-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.top_access_address {
  margin-top: 32px;
}

/*  ------- menu--------------------------*/

.menu_selector {
  background: var(--primary-color);
  text-align: center;
}
/* title */
.menu_page_title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

/* selector list */
.menu_selector_list {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 1080px) {
  .menu_selector_list {
    justify-content: space-around;
  }
}
/* item */
.menu_selector_item {
  width: 33%;
}

/* link */
.menu_selector_link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
}

.menu_selector_link:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
/* 日本語 */
.menu_selector_jp {
  font-size: 20 px;
  letter-spacing: 0.2em;
}

/* 英語 */
.menu_selector_en {
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* hover */
.menu_selector_link:hover {
  opacity: 0.7;
}
/* menu section */

.menu_section {
  padding: 64px 0;
  background: var(--gray-color);
}

.menu_section-dark {
  background: var(--primary-color);
}

/* title */
.menu_page_title {
  font-size: 32px;

}
.menu_section_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.menu_section_title span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  opacity: 0.6;
}

.menu_section_title.is-dark {
  color: var(--white-color);
}

.menu_list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 32px;
}
@media screen and (min-width: 1080px) {
  .menu_list {
    flex-direction: row;
    gap: 32px;
  }
}
.menu_item {
  text-align: left;
}

.menu_img-wrapper {
  position: relative;
}

.menu_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.menu_price {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 14px;
  color: var(--white-color);
  letter-spacing: 0.1em;
}

.menu_text {
  margin-top: 12px;
}

.menu_name {
  font-size: 14px;
  letter-spacing: 0.1em;
}

.menu_desc {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.6;
}

.menu_section-dark .menu_name,
.menu_section-dark .menu_desc {
  color: var(--white-color);
}

/* ------------ info ----------------- */

.info_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

.info_post {
  margin-top: 48px;
}

.info_post.l_header-nav_item:not(:first-child) {
  margin-top: 32px;
}

.info_post:nth-child(2n) {
  background: var(--gray-color02);
}

.info_post_date {
  font-size: 12px;
  color: var(--gray-color);
}

.info_post_txt {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .info_post_txt {
    font-size: 16px;
  }
}

.info_post {
  box-shadow: 2px 2px 4px rgba(170, 170, 170, 0.3);
  padding: 32px 16px;
}

@media screen and (min-width: 1080px) {
  .info_post {
    padding: 32px;
  }
}
.info_post_title {
  font-weight: bold;
  font-size: 14px;
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .info_post_title {
    font-size: 18px;
  }
}
.info_post_img-wrapper {
  margin-top: 8px;
}

.info_post_img {
  border-radius: 8px;
}

.info_post_txt {
  margin-top: 8px;
}

/* ------------ shop ----------------- */

.shop_info {
  background-color: var(--primary-color);
}

.shop_info_title {
  font-size: 32px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

.shop_info_inside_title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: bold;
  margin-top: 60px;
}

.shop_info_contents {
  margin-top: 60px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .shop_info_contents {
    text-align: center;
  }
}

.shop_info_shop-name {
  font-size: 20px;
  font-weight: bold;
}

.shop_info_detail {
  font-size: 14px;
}

.shop_info_img-wrapper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media screen and (min-width: 1080px) {
  .shop_info_img-wrapper {
    flex-direction: row;
    gap: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .shop_info_img-wrapper:nth-child(2) {
    flex-direction: row-reverse;
    margin-top: 48px;
  }
}
.shop_info_img {
  border-radius: 8px;
}

@media screen and (min-width: 1080px) {
  .shop_info_img {
    width: 480px;
  }
}
.shop_info_txt-wrapper {
  font-size: 14px;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .shop_info_txt-wrapper {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.shop_info_access {
  background-color: var(--gray-color);
}

.shop_info_title__access {
  color: var(--black-color);
}

.shop_info_access-address {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram_icon-wrapper {
  display: flex;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .instagram_icon-wrapper {
    justify-content: center;
  }
}

.instagram-icon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

/* ------------ js ----------------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}
