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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 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 root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background-color: #000;
}

*, *::before, *::after {
  --min-size: 15;
  --max-size: 16;
  --min-viewport: 375;
  --max-viewport: 1280;
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
  --clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}

* {
  font-family: "hiragino-mincho-pron", serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 0 0 0;
}
.row .Column {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row .Column {
    margin-bottom: 0;
    width: 48.6178861789%;
  }
}

.Header {
  background-color: #fff;
  padding: 15px;
  text-align: center;
}
.Header img {
  width: 235px;
  margin: 0 auto;
}

main {
  text-align: center;
}

.Hero {
  position: relative;
  z-index: -1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../images/gunjo_logo_sp.svg), url(../images/hero_sp.jpg);
  background-size: 100.5%, cover;
  background-repeat: no-repeat;
  background-position: 50% -2px, 50% 0;
  overflow: hidden;
  height: 80%;
}
@media (min-width: 768px) {
  .Hero {
    background: url(../images/gunjo_logo.svg), url(../images/hero.jpg);
    background-size: 100.5%, cover;
    background-repeat: no-repeat;
    height: unset;
    aspect-ratio: 1370/768;
  }
}
.Hero h1 {
  width: 80%;
  margin-top: max(30vw, 150px);
}
@media (min-width: 768px) {
  .Hero h1 {
    width: 320px;
    margin-top: 6vw;
    margin-left: 55vw;
  }
}
@media (min-width: 992px) {
  .Hero h1 {
    width: 400px;
    margin-left: 60vw;
  }
}
@media (min-width: 1400px) {
  .Hero h1 {
    margin-left: 70vw;
  }
}

.Intro {
  max-width: 1170px;
  margin: 0 auto;
  color: #efefef;
  line-height: 2;
  text-align: center;
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
}
.Intro p {
  text-align: justify;
}
.Intro dt {
  font-weight: 800;
  margin-top: 1.5em;
  color: #ffc600;
}
.Intro dd p {
  font-size: 90%;
}
.Intro {
  padding: 20px 20px 40px 20px;
  text-align: justify;
}
@media (min-width: 768px) {
  .Intro {
    text-align: center;
    padding-bottom: 80px;
  }
  .Intro .Column {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .Intro br {
    display: inline;
  }
}
@media (min-width: 1400px) {
  .Intro figure.Column {
    margin-right: calc(50% - 50vw);
    width: 63%;
  }
}
.Intro .period {
  margin-top: 30px;
  padding: 20px 0;
  --min-size: 20;
  --max-size: 26;
  font-size: var(--clamp-size);
  line-height: 1.5;
  color: #f1f1f1;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.Intro .period br {
  display: inline;
}
@media (min-width: 768px) {
  .Intro .period {
    width: 600px;
    margin: 60px auto 0 auto;
    display: inline-block;
    text-align: center;
    padding: 30px 0;
  }
  .Intro .period br.onlysp {
    display: none;
  }
}
.Intro .period strong {
  font-weight: 700;
  font-style: normal;
  --min-size: 22;
  --max-size: 34;
  font-size: var(--clamp-size);
  color: #ffc600;
  font-weight: 700;
  line-height: 1.2;
}
.Intro .period strong span {
  font-family: inherit;
  font-weight: inherit;
  font-size: 120%;
}
@media (min-width: 768px) {
  .Intro .period strong span {
    font-size: 140%;
  }
}

.Section {
  padding: 40px 15px;
}
@media (min-width: 768px) {
  .Section {
    padding: 80px 15px;
  }
}
.Section {
  text-align: left;
}
.Section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #4d3310;
  --min-size: 30;
  --max-size: 34;
  font-size: var(--clamp-size);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .Section__heading br {
    display: none;
  }
}
.Section {
  max-width: 1170px;
  margin: 0 auto;
}
.Section ul {
  margin: 0;
  padding: 1.25em;
}
.Section ul li {
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
  margin-right: 2.5em;
  margin-bottom: 0.5em;
}
.Section ul li::marker {
  color: #ff6969;
}
@media (min-width: 768px) {
  .Section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.BuffetSection {
  position: relative;
  max-width: unset;
  background: url(../images/buffet_background.jpg) no-repeat;
  background-size: cover;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .BuffetSection {
    padding: 155px 0 80px 0;
  }
}
.BuffetSection .swiper {
  position: relative;
  z-index: 0;
}
.BuffetSection .swiper .swiper-button-prev,
.BuffetSection .swiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}
.BuffetSection .swiper .swiper-button-prev::after,
.BuffetSection .swiper .swiper-button-next::after {
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (min-width: 768px) {
  .BuffetSection .swiper .swiper-button-prev,
  .BuffetSection .swiper .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .BuffetSection .swiper .swiper-button-prev::after,
  .BuffetSection .swiper .swiper-button-next::after {
    width: 20px;
    height: 20px;
  }
}
.BuffetSection .swiper .swiper-button-prev::after {
  -webkit-transform: rotate(-135deg) translate(-3px, 3px);
          transform: rotate(-135deg) translate(-3px, 3px);
}
.BuffetSection .swiper .swiper-button-next::after {
  -webkit-transform: rotate(45deg) translate(-3px, 3px);
          transform: rotate(45deg) translate(-3px, 3px);
}
.BuffetSection .Desc {
  display: inline-block;
  background-color: #4f2d0f;
  padding: 30px;
  text-align: justify;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
}
.BuffetSection .Desc p {
  color: #f1f1f1;
  letter-spacing: 0.5px;
  line-height: 1.8;
}
.BuffetSection .Desc p:not(:last-child) {
  margin-bottom: 1em;
}
.BuffetSection .Desc h2 {
  --min-size: 28;
  --max-size: 34;
  font-size: var(--clamp-size);
  font-weight: bold;
  color: #ffc600;
  margin-bottom: 20px;
}
.BuffetSection .Desc h3 {
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
  color: #f1f1f1;
  letter-spacing: 0.5px;
  line-height: 1.8;
}
.BuffetSection .Desc dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.BuffetSection .Desc dl dt, .BuffetSection .Desc dl dd {
  color: #fff;
  letter-spacing: 0.5px;
  margin-top: 0.4em;
}
.BuffetSection .Desc dl dt {
  width: 15%;
  font-weight: bold;
}
.BuffetSection .Desc dl dd {
  width: calc(85% - 10px);
}
@media (min-width: 768px) {
  .BuffetSection .Desc {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 1;
    width: 400px;
  }
}
@media (min-width: 992px) {
  .BuffetSection .Desc {
    width: 490px;
    padding: 50px;
    top: 60px;
  }
}
.BuffetSection figure:not(.Column) {
  margin-top: 2.1897810219%;
}
@media (min-width: 768px) {
  .BuffetSection figure:not(.Column) {
    width: 95vw;
  }
}
@media (min-width: 992px) {
  .BuffetSection figure:not(.Column) {
    width: 85.5vw;
  }
}
.BuffetSection .row {
  margin-top: 2.1897810219%;
}
.BuffetSection .row > .Column:first-child {
  width: 50%;
  margin: 0 0 2.1897810219% auto;
}
@media (min-width: 768px) {
  .BuffetSection .row > .Column:first-child {
    width: 34.6715328467%;
    margin: unset;
  }
}
@media (min-width: 768px) {
  .BuffetSection .row > .Column:last-child {
    width: 63.503649635%;
  }
}

.WineSection {
  padding: 80px 20px;
  color: #fff;
}
.WineSection h2 {
  margin-bottom: 30px;
  --min-size: 22;
  --max-size: 24;
  font-size: var(--clamp-size);
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .WineSection h2 br {
    display: none;
  }
}
.WineSection figure {
  width: 80%;
}
@media (min-width: 768px) {
  .WineSection figure {
    max-width: 500px;
    width: unset;
  }
}
.WineSection figure {
  max-width: 500px;
  margin: 0 auto;
}

.GunjoSection {
  padding: 80px 20px;
  background-image: url("../images/gunjo.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
.GunjoSection p {
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: #efefef;
  letter-spacing: 0.5px;
  line-height: 2;
  text-align: justify;
}
.GunjoSection .grid-template-col-6 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}
.GunjoSection .grid-col-6 {
  -ms-grid-column-span: 6;
  grid-column: span 6/span 6;
}
.GunjoSection .grid-col-3 {
  -ms-grid-column-span: 3;
  grid-column: span 3/span 3;
}
.GunjoSection .grid-col-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
}
.GunjoSection .grid-col-1 {
  -ms-grid-column-span: 1;
  grid-column: span 1/span 1;
}
.GunjoSection .grid-row-start-1 {
  -ms-grid-row: 1;
      grid-row-start: 1;
}
.GunjoSection .grid-row-start-2 {
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.GunjoSection .grid-row-start-3 {
  -ms-grid-row: 3;
      grid-row-start: 3;
}
.GunjoSection .grid-row-start-4 {
  -ms-grid-row: 4;
      grid-row-start: 4;
}
.GunjoSection .grid-row-start-5 {
  -ms-grid-row: 5;
      grid-row-start: 5;
}
.GunjoSection .grid-row-start-6 {
  -ms-grid-row: 6;
      grid-row-start: 6;
}
.GunjoSection .grid-col-start-1 {
  -ms-grid-column: 1;
      grid-column-start: 1;
}
.GunjoSection .grid-col-start-2 {
  -ms-grid-column: 2;
      grid-column-start: 2;
}
.GunjoSection .grid-col-start-3 {
  -ms-grid-column: 3;
      grid-column-start: 3;
}
.GunjoSection .grid-col-start-4 {
  -ms-grid-column: 4;
      grid-column-start: 4;
}
.GunjoSection .grid-col-start-5 {
  -ms-grid-column: 5;
      grid-column-start: 5;
}
.GunjoSection .grid-col-start-6 {
  -ms-grid-column: 6;
      grid-column-start: 6;
}
.GunjoSection .grid-template-col-6 img {
  width: 100%;
  height: auto;
}
.GunjoSection .Wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .GunjoSection .Wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .GunjoSection .Wrapper {
    gap: 60px;
  }
}
.GunjoSection .TextBox {
  -ms-flex-line-pack: center;
      align-content: center;
}
.GunjoSection .TextBox p {
  line-height: 2.5;
  letter-spacing: 1.5px;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.65));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.65));
}

.PlansSection {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  .PlansSection {
    padding: 80px 15px;
  }
}
.PlansSection {
  background-color: #4f4034;
  --min-size: 17;
  --max-size: 18;
  font-size: var(--clamp-size);
  color: #efefef;
  text-align: justify;
}
@media (min-width: 768px) {
  .PlansSection {
    text-align: center;
  }
}
.PlansSection .Section__heading {
  color: #ffdb66;
}
.PlansSection .Plan {
  background-color: #fff;
  border: 1px solid #c1b1ac;
  text-align: left;
  max-width: 970px;
  margin: 40px auto 0 auto;
  padding: 20px;
  color: #333;
}
.PlansSection .Plan p {
  line-height: 1.8;
}
@media (min-width: 768px) {
  .PlansSection .Plan {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.PlansSection .Plan .PlanImage {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .PlansSection .Plan .PlanImage {
    width: 28%;
    margin-bottom: 0;
  }
}
.PlansSection .Plan .PlanBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .PlansSection .Plan .PlanBody {
    width: 68%;
  }
}
.PlansSection .Plan .PlanBody h3 {
  --min-size: 18;
  --max-size: 20;
  font-size: var(--clamp-size);
  font-weight: bold;
  margin-bottom: 1em;
}
.PlansSection .Plan .PlanBody dl {
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
}
.PlansSection .Plan .PlanBody dt {
  font-weight: bold;
}
.PlansSection .Plan .PlanBody dd {
  margin-bottom: 0.5em;
}
.PlansSection .Plan .PlanBody .btn {
  margin: auto 0 0 0;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.note {
  line-height: 1.5;
  font-size: 80% !important;
  text-align: left !important;
  margin-top: 1em;
}
.note::before {
  content: "※";
}

.Footer {
  background-color: #362a1c;
  padding: 40px 0;
  text-align: center;
}
.Footer__copyright {
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  opacity: 0.85;
}

.btn {
  position: relative;
  display: block;
}
@media (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}
.btn {
  background-color: #fff;
  border: 1px solid #989898;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
  color: inherit !important;
  line-height: 1.2;
  text-decoration: none;
  margin: 0.5em auto;
  padding: 15px 50px 17px 30px;
  cursor: pointer;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.btn::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #00808f;
  border-right: 2px solid #00808f;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.btn:hover {
  background-color: #e1e1e1;
}
.btn:hover::after {
  right: 20px;
}
@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.LoaderWrap {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  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;
  opacity: 1;
}
.LoaderWrap.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}

.loader {
  width: 50px;
  padding: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffc600;
  --_m:
  conic-gradient(#0000 10%,#000),
  linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  -webkit-animation: l3 1s infinite linear;
          animation: l3 1s infinite linear;
}

@-webkit-keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes l3 {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
/* 2026.04.14 メニュー写真追加 */
.BuffetMenu {
  padding-bottom: 40px;
}
.BuffetMenu .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: revert;
          flex-direction: revert;
}
@media (min-width: 768px) {
  .BuffetMenu {
    padding-bottom: 80px;
  }
}
/*# sourceMappingURL=style.min.css.map */