@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: 16px;
}

/**
 * 追記
 */
body {
  margin: 0;
  padding: 0;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus {
  opacity: 0.6;
  transition: opacity 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --font-size-h2-en: clamp(2.313rem, 1.069rem + 4.98vw, 4.25rem);
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 800;
  --font-en: "skolar-sans-latin-compressed", sans-serif;
  --color-base: #4f4949;
  --color-primary: #807878;
  --color-accent: #efa046;
  --color-bg-gray: #f9f8f8;
  --color-border: #b6b1b1;
  --color-border-img: #eceaea;
  --color-border-title: #fcc800;
  --color-red: #e8380d;
  --color-orange: #ed6d35;
  --space-side: 12px;
  --space-inner-side: 8px;
  --height-footer-gnavi: 95px;
  --size-btn-scrolltop: clamp(3.125rem, 1.484rem + 7.5vw, 5rem);
  --hover-animation: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --hover-opacity: 70%;
  --hover-color: #8d8686;
  --border-radius: 10px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
}

@media (600px <= width) {
  :root {
    --space-side: 30px;
    --space-inner-side: 20px;
    --height-footer-gnavi: 105px;
  }
}
@media (1024px < width) {
  :root {
    --font-size-h2-en: clamp(3.313rem, 2.949rem + 0.57vw, 3.375rem);
    --space-side: 0px;
    --space-inner-side: 50px;
    --size-btn-scrolltop: 80px;
  }
}
@media (1920px < width) {
  :root {
    --font-size-h2-en: clamp(3.375rem, 1.308rem + 1.72vw, 4.063rem);
  }
}
/* ------------------------------
 * default
------------------------------ */
body {
  position: relative;
  width: 100%;
  font-family: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  -webkit-animation: fade 1.5s ease-in forwards;
  animation: fade 1.5s ease-in forwards;
  font-weight: 500;
  color: #202020;
  background: #f0f7e8 repeat left top/auto auto;
  transition: background-color 0.3s ease;
}
body.-lunch {
  background-color: #fec56d;
}
body.-dinner {
  background-color: #c7d9e3;
}
body.-kids {
  background-color: #e8eb97;
}

@-webkit-keyframes fade {
  from {
    opacity: 0; /* 最初は透明 */
  }
  to {
    opacity: 1; /* 最後は不透明 */
  }
}
@keyframes fade {
  from {
    opacity: 0; /* 最初は透明 */
  }
  to {
    opacity: 1; /* 最後は不透明 */
  }
}
._screenhidden {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

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

@media screen and (max-width: 980px) {
  ._mid-hide-only {
    display: none;
  }
}

._mid-show-only {
  display: none;
}
@media screen and (max-width: 768px) {
  ._mid-show-only {
    display: block;
  }
}

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

._br {
  display: none;
}
@media screen and (max-width: 480px) {
  ._br {
    display: block;
  }
}

._br-hide {
  display: block;
}
@media screen and (max-width: 480px) {
  ._br-hide {
    display: none;
  }
}

.flexwrap {
  display: flex;
}

.l-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* ----------------------------------------------------
　施設共通ヘッダー
---------------------------------------------------- */
.header_area {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header_area.is-hide {
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .header_gnavi {
    padding-block: 17px;
  }
}
.btn_gnavi_toggle {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .btn_gnavi_toggle {
    width: 32px;
    padding: 0;
  }
}
.btn_gnavi_toggle span {
  background-color: #807878;
}

.header_pc_gnavi a {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" !important;
  font-feature-settings: "palt" !important;
}

@media (1024px < width) {
  .header_pc_gnavi a {
    font-size: clamp(0.813rem, -64.5rem + 100vw, 0.877rem);
  }
}
.header_logo img {
  height: auto;
}

.navi_ttl {
  padding: 10px 0;
  text-align: left;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .navi_ttl {
    padding: 8px 0;
  }
}
.navi_lists {
  line-height: 1.4;
  text-align: left;
}

.text_navi_list .font_en {
  font-family: skolar-sans-latin-compressed, sans-serif;
}

.text_navi_list .font_ja {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  -webkit-font-feature-settings: "palt" !important;
  font-feature-settings: "palt" !important;
}

time, .font_en {
  font-family: var(--font-en);
  font-weight: var(--font-normal);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  border: none;
}

/* ----------------------------------------------------
　LPヘッダー
---------------------------------------------------- */
.gourmet-header {
  padding: 30px 0;
}
.gourmet-header-logo {
  width: 75%;
  margin: 0 auto;
}

.footer {
  padding: 20px 0 85px;
}
.footer-logo {
  width: 80%;
  margin: 0 auto;
}
.footer-link {
  display: block;
}

.splide {
  width: 100%;
}
.splide__list {
  height: auto;
}
.splide__slide img {
  width: 100%;
}
.splide__arrows {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.splide__arrow {
  appearance: none;
  border: none;
  background: transparent;
  width: 32px;
  height: 37px;
  cursor: pointer;
}
.splide__arrow--prev {
  transform: rotate(180deg);
}
.splide__arrow--icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 32px solid #fff;
  border-right: 0;
  display: inline-block;
  transition: border 0.08s;
}
.splide__arrow:hover .splide__arrow--icon {
  border-left: 32px solid #202020;
}

.hero {
  position: relative;
}

.mainwrap {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid #202020;
  border-right: 1px solid #202020;
  background-color: #f0f7e8;
  order: 2;
}
@media screen and (max-width: 980px) {
  .mainwrap {
    max-width: initial;
    border: none;
  }
}
.mainwrap img {
  height: auto;
}

.sidewrap {
  width: calc((100% - 600px) / 2);
  height: 100dvh;
  position: fixed;
  top: 0;
}
.sidewrap.-left {
  padding: 0 20px;
  left: 0;
}
.sidewrap.-right {
  right: 0;
}
.sidewrap-container {
  height: 100%;
  padding: 0 20px;
}
.sidewrap-logo {
  max-width: 285px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.sidewrap-logo.is-active {
  opacity: 1;
}
.sidewrap-flex {
  max-width: 332px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sidewrap-pctitle {
  width: 100%;
  padding: 0 20px;
}
.sidewrap-pctitle img {
  max-width: clamp(60px, 14vw, 190px);
  width: 100%;
  margin: 0 auto;
}
.sidewrap-list {
  width: 100%;
  margin-top: clamp(10px, 2.6vw, 40px);
  border-bottom: 1px solid #202020;
}
.sidewrap-item {
  border-top: 1px solid #202020;
}
.sidewrap-link {
  padding: 30px clamp(10px, 1.3vw, 20px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.gnav {
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}
.gnav-list {
  display: flex;
  align-items: center;
}
.gnav-item {
  width: 33.3333333333%;
}
.gnav-item:not(:first-child) {
  border-left: 1px solid #202020;
}
.gnav-link {
  width: 100%;
  height: 100%;
  padding: clamp(15px, 3.9vw, 30px) clamp(20px, 5vw, 35px);
  display: flex;
  align-items: flex-end;
  position: relative;
}
.gnav-link img {
  width: 100%;
}

.fixed-gnav {
  --nav-offset: 0px;
  width: 100%;
  background-color: #f0f7e8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(calc(-100% + var(--nav-offset)));
  transition: transform 0.3s ease;
}
.fixed-gnav.is-visible {
  transform: translateY(var(--nav-offset));
}
.fixed-gnav-logo {
  width: 100%;
  padding: 10px 20px;
  border-bottom: 1px solid #202020;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.fixed-gnav-logo img {
  width: 80%;
  margin: 0 auto;
}
.fixed-gnav-list {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #202020;
}
.fixed-gnav-item {
  width: 33.3333333333%;
}
.fixed-gnav-item:not(:first-child) {
  border-left: 1px solid #202020;
}
.fixed-gnav-link {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-self: center;
}
.fixed-gnav-link img {
  width: 80%;
  margin: 0 auto;
}

.l-section.--lunch {
  background-color: #FDF3E9;
}
.l-section.--dinner {
  background-color: #E6E4E7;
}
.l-section.--kids {
  background-color: #EEF4E6;
}
.l-section-heading {
  padding: 70px 0 40px;
}
.l-section.--kids .l-section-heading {
  padding-top: 30px;
}
.l-section-lead {
  font-size: clamp(0.8125rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.15rem;
  margin-top: 30px;
}
.l-section-menu {
  padding: 40px 30px;
}
.l-section-menu.--lunch {
  background-color: #f97300;
}
.l-section-menu.--dinner {
  background-color: #1e2f4a;
}
.l-section-menu.--kids {
  background-color: #e6dd00;
}
.l-section-menu-title {
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
}
.l-section-menu-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(15px, 3vw, 20px);
}
.l-section-menu-item {
  max-width: 118px;
  border-radius: 50%;
}
.l-section-menu.--lunch .l-section-menu-item {
  width: 21%;
  border: 2px solid #f97300;
  background-color: #f6c441;
}
.l-section-menu.--dinner .l-section-menu-item {
  width: 21%;
  border: 2px solid #1e2f4a;
  background-color: #c7d9e3;
}
.l-section-menu.--kids .l-section-menu-item {
  width: 21%;
  border: 2px solid #f29600;
  background-color: #e8eb97;
}
.l-section-detail {
  padding: 40px clamp(20px, 5vw, 40px) 70px;
}
.l-section-detail-image {
  border-radius: 40px;
  position: relative;
}
@media screen and (max-width: 980px) {
  .l-section-detail-image {
    border-radius: clamp(30px, 8vw, 68px);
  }
}
.l-section-detail-image img {
  width: 100%;
}
.l-section-detail.--lunch .l-section-detail-image {
  background-color: #f6c441;
}
.l-section-detail.--dinner .l-section-detail-image {
  background-color: #c7d9e3;
}
.l-section-detail.--kids .l-section-detail-image {
  background-color: #e8eb97;
}
.l-section-detail-link {
  color: inherit;
  display: block;
  transition: opacity 0.3s;
}
.l-section-detail-link:hover {
  opacity: 0.7;
}
.l-section-detail-num {
  max-width: clamp(30px, 15vw, 113px);
  width: 100%;
  position: absolute;
  top: clamp(20px, 4vw, 30px);
  left: 30px;
}
.l-section-detail.--kids .l-section-detail-num {
  max-width: clamp(20px, 9vw, 70px);
  left: clamp(20px, 7.5vw, 50px);
}
.l-section-detail-thumb {
  max-width: clamp(100px, 25vw, 200px);
  position: absolute;
  bottom: -70px;
  left: -40px;
}
@media screen and (max-width: 480px) {
  .l-section-detail-thumb {
    bottom: -40px;
    left: -20px;
  }
}
.l-section-detail-item {
  line-height: 1.8;
}
.l-section-detail-item:not(:first-child) {
  padding-top: 40px;
}
.l-section-detail-desc {
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}
.l-section-detail-heading, .l-section-detail-price {
  font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.6;
}
.l-section-detail.--lunch .l-section-detail-heading, .l-section-detail.--lunch .l-section-detail-price {
  color: #f97300;
}
.l-section-detail.--dinner .l-section-detail-heading, .l-section-detail.--dinner .l-section-detail-price {
  color: #1e2f4a;
}
.l-section-detail.--kids .l-section-detail-heading, .l-section-detail.--kids .l-section-detail-price {
  color: #f29600;
}
.l-section-detail-price {
  letter-spacing: 0.1rem;
}
.l-section-detail-sub {
  font-size: 1.25rem;
}
.l-section-detail-tax {
  font-size: clamp(0.875rem, 4vw, 1.25rem);
}
.l-section-detail-floor {
  color: #fff;
  letter-spacing: 0.1rem;
  margin-top: 10px;
  padding: 0 8px;
  display: inline-block;
}
.l-section-detail.--lunch .l-section-detail-floor {
  background-color: #f97300;
}
.l-section-detail.--dinner .l-section-detail-floor {
  background-color: #1e2f4a;
}
.l-section-detail.--kids .l-section-detail-floor {
  background-color: #f29600;
}
.l-section-detail-text {
  font-size: clamp(0.875rem, 4vw, 1rem);
  letter-spacing: 0.1rem;
  margin-top: 10px;
}

.note {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  line-height: 2.2;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}/*# sourceMappingURL=style.css.map */