@charset "UTF-8";
/*==Noto Sans JP==*/
/*Thin*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
/*Light*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/*Regular*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*Midium*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/*Bold*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/*Black*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraLightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
.poppins {
  font-family: "Poppins";
}

/*==Noto Sans JP==*/
/* bodyのデフォルトを定義 */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.8;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", Meiryo, sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* marginとpaddingを削除 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

/* pが連続したら段落を空ける */
p + p {
  margin-top: 1em;
}

/* list-styleを削除 */
ul,
ol {
  list-style: none;
}

/* imgとpictureタグの設定 */
img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* 各ブラウザやOSの設定で動きの制限をしている場合、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* aタグのテキストカラーを親要素から継承と、ホバー時のアニメーション */
a {
  color: inherit;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.5s;
  }
}
a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  a:hover, a:focus {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  a:hover img {
    transition: all 0.5s;
  }
}

/*Thin*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
/*Light*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/*Regular*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*Midium*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/*Bold*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/*Black*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
.mincho {
  font-family: "Noto Serif JP";
}

footer {
  margin-top: 64px;
}
@media (min-width: 768px) {
  footer {
    margin-top: 112px;
  }
}
footer .tel_info {
  padding-top: 30px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  footer .tel_info {
    padding-top: 42px;
    font-size: 15px;
    display: flex;
    justify-content: center;
  }
}
footer .tel_info .tel_wrap a {
  text-decoration: none;
}
@media (min-width: 768px) {
  footer .tel_info .time_week {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  footer .tel_info .time_week br {
    display: none;
  }
}
footer .tel_info p + p {
  margin-top: 0;
}
footer .policy_wrap {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
@media (min-width: 768px) {
  footer .policy_wrap {
    padding-top: 42px;
  }
}
footer .policy_wrap a {
  text-decoration: none;
}
footer .copyright_wrap {
  margin-top: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #D6D6D6;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  footer .copyright_wrap {
    margin-top: 56px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 13px;
  }
}

header section.keyvisual {
  background-image: url("../img/reservation/reservation_main.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  header section.keyvisual {
    height: 680px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header section.keyvisual {
    height: 510px;
  }
}
header section.keyvisual.no_keyvisual {
  height: initial;
  background-image: initial;
  padding-top: 104px;
  padding-bottom: 24px;
}
header section.keyvisual.no_keyvisual div.container div.title div.logo {
  text-align: center;
  position: static;
}
header section.keyvisual.no_keyvisual div.container div.title div.logo img {
  width: 70%;
}
@media (min-width: 768px) {
  header section.keyvisual.no_keyvisual div.container div.title div.logo img {
    width: initial;
  }
}
header section.keyvisual div.container {
  position: relative;
}
header section.keyvisual div.container div.title {
  text-align: center;
}
header section.keyvisual div.container div.title hgroup div.english {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: 3.15px;
  color: #fff;
  font-family: "Poppins";
}
@media (min-width: 768px) {
  header section.keyvisual div.container div.title hgroup div.english {
    font-size: 42px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header section.keyvisual div.container div.title hgroup div.english {
    font-size: 37px;
  }
}
header section.keyvisual div.container div.title hgroup h1 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.4px;
  color: #fff;
}
@media (min-width: 768px) {
  header section.keyvisual div.container div.title hgroup h1 {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 991.98px) {
  header section.keyvisual div.container div.title hgroup h1 {
    font-size: 15px;
  }
}
header section.keyvisual div.logo {
  position: absolute;
  content: "";
  left: 2%;
  top: 2%;
}
nav.breadcrumb {
  padding: 8px 0 32px;
}
@media (min-width: 768px) {
  nav.breadcrumb {
    padding: 16px 0 56px;
  }
}
nav.breadcrumb div.container div.lists span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 16px;
  color: #707070;
}
@media (min-width: 768px) {
  nav.breadcrumb div.container div.lists span {
    font-size: 12px;
  }
}
nav.breadcrumb div.container div.lists span a {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */