@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 100%;
  padding: 25px 80px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  will-change: opacity, transform;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.header.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  pointer-events: none;
}

.header.is-solid {
  background: #c1ad54;
}

.header .logo {
  width: 315px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .sp_menu {
  display: none;
}

.header .navigation_pc nav .navi {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navigation_pc nav .navi .navi_item {
  margin-right: 40px;
}

.header .navigation_pc nav .navi .navi_item:nth-child(3) {
  margin-right: 0;
}

.header .navigation_pc nav .navi .navi_item:last-child {
  margin-right: 0;
  margin-left: 60px;
  position: relative;
}

.header .navigation_pc nav .navi .navi_item:last-child::before {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navigation_pc nav .navi .navi_item .link {
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}

.header .navigation_pc nav .navi .navi_item .link.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header .navigation_pc nav .navi .navi_item .link.contact .icon {
  width: 20px;
}

.header .navigation_sp {
  display: none;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 20px 10px;
  }
  .header .logo {
    width: 210px;
  }
  .header .sp_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header .sp_menu .icon {
    width: 30px;
    position: relative;
  }
  .header .sp_menu .icon .link {
    position: absolute;
    inset: 0;
  }
  .header .sp_menu .hamburger_menu {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
    cursor: pointer;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar {
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(1) {
    top: 0;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(2) {
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(3) {
    top: 20px;
  }
  .header .navigation_pc {
    display: none;
  }
  .header .navigation_sp {
    width: 100%;
    padding: 100px 20px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #c1ad54;
    display: block;
    position: fixed;
    top: -800%;
    left: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header .navigation_sp.panelactive {
    top: 0;
  }
  .header .navigation_sp nav {
    width: 100%;
  }
  .header .navigation_sp nav .navi {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header .navigation_sp nav .navi .navi_item .link {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
  }
  .header .navigation_sp nav .contact {
    margin: 100px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 12px;
    position: relative;
  }
  .header .navigation_sp nav .contact::before {
    content: '';
    width: 300px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .navigation_sp nav .contact .link {
    position: absolute;
    inset: 0;
  }
  .header .navigation_sp nav .contact .icon {
    width: 25px;
  }
  .header .navigation_sp nav .contact span {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
  }
  .header .navigation_sp nav .tel_link {
    display: block;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin: 15px auto 0;
    text-align: center;
  }
  .header .navigation_sp nav .tel_link span {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #c1ad54;
  padding: 50px 0 20px;
}

.footer .logo {
  max-width: 315px;
  margin: auto;
}

.footer .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer .icons .icon {
  width: 30px;
  position: relative;
}

.footer .icons .icon .link {
  position: absolute;
  inset: 0;
}

.footer .copy {
  margin-top: 55px;
}

.footer .copy .copyRight {
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .copy .copyRight {
    font-size: 10px;
  }
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  background: #c1ad54;
}

/* ---------------------------------------------------------
    pagevisual
--------------------------------------------------------- */
.page_visual {
  width: 100%;
  height: 220px;
  margin-top: 100px;
  position: relative;
  background: url(../images/menu/pageVisual.jpg) no-repeat center/cover;
}

.page_visual::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.page_visual .page_title {
  font-size: 32px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.page_visual .page_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 767px) {
  .page_visual {
    height: 180px;
    margin-top: 70px;
  }
  .page_visual .page_title {
    font-size: 26px;
    gap: 5px;
  }
  .page_visual .page_title .en {
    font-size: 18px;
  }
}

/* ---------------------------------------------------------
    tab
--------------------------------------------------------- */
.tab {
  max-width: 1000px;
  padding: 0 20px;
  margin: 80px auto;
}

.tab .tab_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.tab .tab_menu ul li {
  width: 230px;
  height: 60px;
  margin-right: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  color: #fff;
}

.tab .tab_menu ul li:first-child {
  background: #b5a563;
}

.tab .tab_menu ul li:nth-child(2) {
  background: #526e86;
}

.tab .tab_menu ul li:last-child {
  background: #9b4d4d;
}

.tab .tab_menu ul li span {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
}

.tab .tab_content {
  display: none;
  padding: 50px 80px;
  border: 4px solid #b5a563;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.tab .tab_content:first-child {
  background: url(../images/menu/tab_bg_1.png) no-repeat center/cover;
}

.tab .tab_content:nth-child(2) {
  border-color: #526e86;
  background: url(../images/menu/tab_bg_2.png) no-repeat center/cover;
}

.tab .tab_content:nth-child(3) {
  border-color: #9b4d4d;
  background: url(../images/menu/tab_bg_3.png) no-repeat center/cover;
}

.tab .tab_content.active {
  display: block;
}

.tab .tab_content .menu_list {
  width: 100%;
}

.tab .tab_content .menus {
  margin-top: 40px;
  list-style-type: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 45px 40px;
}

.tab .tab_content .menus .menu_item .photo_image {
  width: 100%;
}

.tab .tab_content .menus .menu_item .photo_image .caption {
  font-size: 14px;
  line-height: 2;
  text-align: right;
}

.tab .tab_content .menus .menu_item .photo_image .caption.opacity_0 {
  opacity: 0;
}

.tab .tab_content .menus .menu_item .item_title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
}

.tab .tab_content .menus .menu_item .sentence {
  margin-top: 10px;
  line-height: 1.75;
}

.tab .tab_content .menus .menu_item .course_list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  list-style-type: none;
}

.tab .tab_content .menus .menu_item .course_list .list_item {
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}

.tab .tab_content .menus .menu_item .course_list .list_item::before {
  content: '●';
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 3px;
}

.tab .tab_content .menus .menu_item .course_list .list_item .marketPrice {
  padding-left: 45px;
  color: #000;
}

.tab .tab_content .menus .menu_item .course_list.noon {
  color: #b5a563;
}

.tab .tab_content .menus .menu_item .course_list.dinner {
  color: #526e86;
}

.tab .tab_content .menus .menu_item .course_list.takeout {
  color: #9b4d4d;
}

.tab .tab_content .menus .menu_item .price {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5px;
  font-size: 24px;
  line-height: 1;
}

.tab .tab_content .menus .menu_item .price .text {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  padding-top: 5px;
}

.tab .note {
  margin-top: 10px;
  text-align: center;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .tab {
    margin: 80px auto;
  }
  .tab .tab_menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tab .tab_menu ul li {
    width: 100px;
    height: 60px;
    margin-right: 5px;
    font-size: 14px;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tab .tab_menu ul li:last-child {
    margin-right: 0;
  }
  .tab .tab_menu ul li span {
    font-size: 10px;
  }
  .tab .tab_content {
    padding: 30px;
    border: 3px solid #b5a563;
  }
  .tab .tab_content .menus {
    margin-top: 30px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 45px 40px;
  }
  .tab .tab_content .menus .menu_item .photo_image {
    width: 100%;
  }
  .tab .tab_content .menus .menu_item .photo_image .caption {
    font-size: 14px;
    line-height: 2;
    text-align: right;
  }
  .tab .tab_content .menus .menu_item .photo_image .caption.opacity_0 {
    opacity: 0;
  }
  .tab .tab_content .menus .menu_item .item_title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
  }
  .tab .tab_content .menus .menu_item .sentence {
    margin-top: 10px;
    line-height: 1.75;
  }
  .tab .tab_content .menus .menu_item .course_list {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    list-style-type: none;
  }
  .tab .tab_content .menus .menu_item .course_list .list_item {
    line-height: 1.75;
    padding-left: 18px;
    position: relative;
  }
  .tab .tab_content .menus .menu_item .course_list .list_item::before {
    content: '●';
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 3px;
  }
  .tab .tab_content .menus .menu_item .course_list .list_item .marketPrice {
    padding-left: 45px;
    color: #000;
  }
  .tab .tab_content .menus .menu_item .course_list.noon {
    color: #b5a563;
  }
  .tab .tab_content .menus .menu_item .price {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 5px;
    font-size: 24px;
    line-height: 1;
  }
  .tab .tab_content .menus .menu_item .price .text {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    padding-top: 5px;
  }
}
/*# sourceMappingURL=menu.css.map */