@charset "UTF-8";
@media screen and (min-width: 1400px) {
  html {
    font-size: 113.83333px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
  html {
    font-size: 8.33333vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1399px) {
  html {
    font-size: 100px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 13.33333vw;
  }
}

@media screen and (min-width: 769px) {
  body {
    font-size: 0.14rem;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.24rem;
  }
}

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

@media screen and (max-width: 768px) {
  .hiddenSP {
    display: none;
  }
}

.sp_nav {
  display: none;
}

.header_sp {
  position: relative;
}

.nav-button {
  display: none;
}

button {
  border: none;
  /* 枠線を消す */
  outline: none;
  /* クリックしたときに表示される枠線を消す */
  background: transparent;
  /* 背景の灰色を消す */
}

.nav {
  color: #f8f8f8;
  text-align: center;
  line-height: 56px;
  margin-top: 0px;
}

.nav li {
  display: inline-block;
  margin: 0 25px;
  font-size: 0.32rem;
}

.nav a {
  text-decoration: none;
}

.nav-wrap.open {
  display: block;
}

.nav-wrap.close {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav-button {
    display: block;
    cursor: pointer;
  }
  .sp_nav {
    display: block;
  }
  .nav-wrap {
    position: fixed;
    /*fixed*/
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
  }
  .nav {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .none {
    border-bottom: solid 0px #252525 !important;
    margin-top: 65px !important;
  }
  .nav-wrap li {
    display: block;
    padding: 15px;
  }
  .nav-wrap a {
    font-size: 0.32rem;
    color: #f8f8f8;
  }
  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: fixed;
    /*fixed*/
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    margin: 25px 25px 25px 25px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 1px;
  }
  .nav_color1 span {
    background-color: #f5f5f5;
  }
  .nav_color2 span {
    background-color: #959595;
  }
  .nav-button.active span {
    background-color: #f5f5f5;
  }
  .nav-button span:nth-of-type(1) {
    top: 0px;
  }
  .nav-button span:nth-of-type(2) {
    top: 12px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 8px;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-12px) rotate(45deg);
    transform: translateY(-12px) rotate(45deg);
  }
}

html {
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  color: #111;
  scroll-behavior: smooth;
}

h1 {
  font-size: 0.48rem;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  h2 {
    font-size: 0.32rem;
    line-height: 1;
  }
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 0.48rem;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  h3 {
    font-size: 0.18rem;
    line-height: 2.5;
  }
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 0.24rem;
    line-height: 2.5;
  }
}

@media screen and (min-width: 769px) {
  h4 {
    font-size: 0.28rem;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  h4 {
    font-size: 0.24rem;
    line-height: 2.5;
  }
}

a {
  text-decoration: none;
  color: #111;
}

@media screen and (min-width: 769px) {
  a {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  a {
    font-size: 0.3rem;
  }
}

@media screen and (min-width: 769px) {
  p {
    font-size: 0.16rem;
  }
}

@media screen and (max-width: 768px) {
  p {
    font-size: 0.3rem;
  }
}

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

.under {
  border-bottom: 1px solid #f5f5f5;
}

.red {
  color: red;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.bold {
  font-weight: bold;
}

#wrap {
  width: 100%;
  overflow: hidden;
  font-family: 'Noto Serif JP', serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.09em;
  line-height: 2.5;
  background-image: url(../img/bk_1.jpg);
}

.sidebar {
  position: fixed;
  top: 30vh;
  right: 0;
  z-index: 9;
  width: 56px;
  height: 280px;
}

@media screen and (min-width: 769px) {
  .sidebar p {
    font-size: .14rem;
  }
}

@media screen and (max-width: 768px) {
  .sidebar p {
    font-size: .24rem;
  }
}

.sidebar_reservation {
  width: 56px;
  background-color: #333;
  color: #f5f5f5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .sidebar_reservation {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .sidebar_reservation {
    height: 3.8rem;
  }
}

.sidebar_takeout {
  width: 56px;
  background-color: #f5f5f5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px) {
  .sidebar_takeout {
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .sidebar_takeout {
    height: 1.8rem;
  }
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #f5f5f5;
  background-color: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 40px;
  }
}

.footer a {
  color: #f5f5f5;
}

@media screen and (max-width: 768px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_logo {
  padding-top: 40px;
  text-align: center;
}

.footer_logo svg {
  fill: #f5f5f5;
}

@media screen and (min-width: 769px) {
  .footer_logo {
    width: 35%;
    height: 400px;
  }
}

.footer_info {
  padding-top: 40px;
}

@media screen and (min-width: 769px) {
  .footer_info {
    width: 35%;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .footer_info {
    width: 100%;
    padding-left: 5%;
    padding-bottom: 5%;
  }
}

@media screen and (min-width: 769px) {
  .footer_info_title {
    vertical-align: text-top;
    line-height: 1;
    height: .32rem;
  }
}

@media screen and (min-width: 769px) {
  .footer_info_number {
    font-size: .32rem;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .footer_menu {
    width: 15%;
    padding-top: 40px;
    height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .footer_menu {
    width: 100%;
    padding-left: 5%;
  }
  .footer_menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer_menu li {
    padding-right: 24px;
  }
}

@media screen and (max-width: 768px) {
  .footer_copy {
    padding-top: 40px;
    text-align: center;
  }
}

.border_new_menu {
  border-left: double 5px #252525;
  line-height: 1;
  padding: 7px 0 7px 18px;
}

.border_new_menu_attention {
  color: #252525;
  border-bottom: double 3px #252525;
  padding: 0 0 16px 0;
}

.border_new_menu_ume {
  color: #E1344C;
  border-bottom: double 3px #E1344C;
}

@media screen and (min-width: 769px) {
  .border_new_menu_ume {
    background: url(../img/ume.png) no-repeat 10px -6px/50px auto;
    padding: 0 0 8px 60px;
  }
}

@media screen and (max-width: 768px) {
  .border_new_menu_ume {
    background: url(../img/ume.png) no-repeat 10px -4px/40px auto;
    padding: 0 0 8px 60px;
  }
}

.border_new_menu_matsu {
  color: #3F7735;
  border-bottom: double 3px #3F7735;
}

@media screen and (min-width: 769px) {
  .border_new_menu_matsu {
    background: url(../img/matsu.png) no-repeat 10px -1px/50px auto;
    padding: 0 0 8px 70px;
  }
}

@media screen and (max-width: 768px) {
  .border_new_menu_matsu {
    background: url(../img/matsu.png) no-repeat 10px -3px/40px auto;
    padding: 0 0 8px 60px;
  }
}

.border_new_menu_add {
  color: #252525;
  border-bottom: double 3px #252525;
  padding: 0 0 16px 0;
}

.border_new_menu_section {
  color: #252525;
  border-top: solid 3px #252525;
  padding: 0 0 16px 0;
}

.logo_fadein {
  background: #f5f5f5;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  fill: #333;
}

.logo_fadein p {
  position: fixed;
  left: 47%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}

.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: black;
  margin-bottom: 100px;
}

.kv_movie {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kv_movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.PC_nav {
  position: relative;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
  text-align: center;
  list-style: none;
}

.PC_nav_textlink {
  padding: 32px 32px 0 0;
}

.PC_nav_textlink a {
  color: #f5f5f5;
}

.PC_nav_snslink {
  height: 25px;
  width: 25px;
  margin: 40px 32px 0 0;
}

.PC_nav_snslink svg {
  fill: #f5f5f5;
}

.PC_nav_info {
  color: #f5f5f5;
  padding: 34px 32px 32px 32px;
  line-height: 1.3;
  border-left: 1px solid #f5f5f5;
}

.PC_nav_info_small {
  font-size: .1rem;
}

.news {
  position: relative;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 160px;
}

.news_area {
  background: #F0F0E3;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .news_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
    height: 314px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 769px) {
  .news_area_title {
    margin-top: 40px;
    margin-left: 80px;
    width: 150px;
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .news_area_title {
    padding-top: 40px;
    text-align: center;
  }
}

@media screen and (min-width: 769px) {
  .news_area_title h2 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-left: 25px;
  }
}

.news_area_title_link {
  display: block;
  padding-top: 10px;
}

@media screen and (min-width: 769px) {
  .news_area_title_link {
    padding-left: 10px;
  }
}

.news_area_content {
  max-width: 700px;
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 769px) {
  .news_area_content {
    margin-top: 60px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  .news_area_content {
    margin-top: 40px;
    padding: 0 20px;
  }
}

.news_area_content li {
  font-size: 0.16rem;
  border-bottom: 1px solid #CECECE;
  margin-bottom: 16px;
}

.about {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .about {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 80px;
  }
}

.menu {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .menu {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .menu img {
    margin: 0 0 0 10%;
  }
}

.menu_box {
  position: absolute;
  z-index: 0;
  width: 100%;
  background-image: url(../img/bk_2.jpg);
}

@media screen and (min-width: 769px) {
  .menu_box {
    height: 480px;
    top: 36px;
  }
}

@media screen and (max-width: 768px) {
  .menu_box {
    height: 500px;
    top: 150px;
  }
}

.block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media screen and (max-width: 768px) {
  .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (min-width: 769px) {
  .block_img {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .block_img {
    width: 90%;
  }
}

@media screen and (min-width: 769px) {
  .block_content {
    width: 40%;
    margin: 0 auto;
    padding: 20px 100px;
  }
}

@media screen and (max-width: 768px) {
  .block_content {
    width: 90%;
    padding: 24px 10% 24px 10%;
  }
}

@media screen and (min-width: 769px) {
  .block_content_title {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .block_content_title {
    margin-bottom: 40px;
  }
}

.block_content_text {
  margin-bottom: 40px;
}

.movie {
  position: relative;
  width: 100%;
  margin-bottom: 200px;
}

.movie_title {
  text-align: center;
  margin-bottom: 80px;
}

.movie_content {
  margin: 0 auto;
  width: 12rem;
  height: 6.75rem;
  background-color: #cececc;
}

.movie_content iframe {
  height: 100%;
}

@media screen and (min-width: 769px) {
  .movie_content iframe {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .movie_content iframe {
    width: 100vw;
  }
}

.info {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .info {
    margin-bottom: 200px;
  }
}

@media screen and (max-width: 768px) {
  .info {
    margin-bottom: 80px;
  }
}

.info_title {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (min-width: 769px) {
  .info_slider {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .info_slider {
    margin-bottom: 40px;
  }
}

.info_slider_img {
  padding: 0 10px;
}

@media screen and (min-width: 769px) {
  .info_slider_img {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .info_slider_img {
    padding: 0 5px;
  }
}

@media screen and (min-width: 769px) {
  .info_content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px auto;
  }
}

@media screen and (max-width: 768px) {
  .info_content {
    width: 90%;
    margin: 5% auto 80px 5%;
  }
}

.info_content_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #CECECE;
  padding: 48px 0;
}

@media screen and (max-width: 768px) {
  .info_content_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.info_content_text_in:first-child {
  padding-right: 200px;
}

.info_map {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.info_map :hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
/*# sourceMappingURL=index.css.map */