@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 1rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #322C12;
  background-color: #f0f6e7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  color: #322C12;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 2.125rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.625;
}

a {
  color: #077346;
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}
a:hover {
  color: #218a0c;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

ul.list-style-none {
  list-style: none;
}

li {
  margin-bottom: 0.5rem;
}

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

picture {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #F9FAFB;
}

th {
  font-weight: 600;
  background-color: #F9FAFB;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  background-color: #077346;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.5rem;
  z-index: 1070;
}

*:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

::selection {
  background-color: #e8f5ef;
  color: #077346;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F9FAFB;
}

::-webkit-scrollbar-thumb {
  background: #077346;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #218a0c;
}

.color-primary {
  color: #077346;
}

.color-secondary {
  color: #f0f6e7;
}

#main-content.main {
  background-color: #f0f6e7;
  font-family: "Noto Serif JP", serif;
  color: #211104;
}
#main-content.main img:not(.p-hero__title-img):not(.p-hero__deco):not(.p-venue-head__ornament):not(.p-gw-hero__ornament):not(.c-course-head__icon):not(.p-wave img):not(.p-hero__bg img) {
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  #main-content.main img:not(.p-hero__title-img):not(.p-hero__deco):not(.p-venue-head__ornament):not(.p-gw-hero__ornament):not(.c-course-head__icon):not(.p-wave img):not(.p-hero__bg img):hover {
    opacity: 0.8;
  }
}
#main-content.main .p-wave img {
  transition: none;
}
#main-content.main .p-wave img:hover {
  opacity: 1;
}

.container {
  width: 100%;
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn--primary:hover {
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--primary:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}
.btn--primary {
  background-color: #077346;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #218a0c;
  color: #FFFFFF;
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.btn--secondary:hover {
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}
.btn--secondary:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}
.btn--secondary {
  background-color: transparent;
  color: #077346;
  border: 2px solid #077346;
}
.btn--secondary:hover {
  background-color: #077346;
  color: #FFFFFF;
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.card__header {
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #322C12;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  margin-bottom: 0.5rem;
}
.card__content {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}
.card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #F9FAFB;
}

.icon {
  display: inline-block;
  flex-shrink: 0;
}
.icon--sm {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.icon--md {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.icon--lg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.icon--xl {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-cutlery::before {
  background-image: url("../img/svg/icon-cutlery.svg");
}
.icon-clock::before {
  background-image: url("../img/svg/icon-clock.svg");
}
.icon-arrow-right::before {
  margin-top: 2px;
  width: 9px;
  height: 15px;
  background-image: url("../img/svg/icon-arrow-right.svg");
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform, background-color;
}
.c-btn:hover {
  transform: translateY(-2px);
}
.c-btn:active {
  transform: translateY(0);
}
.c-btn:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}
.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 56px;
  padding: 1.19rem 1.875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out, filter 0.15s ease-in-out;
}
.c-btn:hover {
  text-decoration: none;
  color: #FFFFFF;
}
.c-btn:active {
  transform: none;
}
.c-btn:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
}
.c-btn--primary {
  background: linear-gradient(180deg, #077346 0%, #218a0c 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(7, 115, 70, 0.25);
}
.c-btn--external {
  width: 100%;
  max-width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (min-width: 1024px) {
  .c-btn--external {
    max-width: 320px;
  }
}
.c-btn--external::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: #FFFFFF;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.c-btn--external::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(1.25rem + 14px);
  transform: translate(50%, -50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/svg/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-menu-box {
  background-color: #FFFFFF;
  border: 2px solid #077346;
  padding: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-menu-box {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
.c-menu-box__corner {
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none;
}
.c-menu-box__corner--tl {
  top: -1px;
  left: -1px;
  border-width: 24px 24px 0 0;
  border-color: #077346 transparent transparent transparent;
}
.c-menu-box__corner--tr {
  top: -1px;
  right: -1px;
  border-width: 24px 0 0 24px;
  border-color: #077346 transparent transparent transparent;
}
.c-menu-box__corner--bl {
  bottom: -1px;
  left: -1px;
  border-width: 0 24px 24px 0;
  border-color: transparent transparent #077346 transparent;
}
.c-menu-box__corner--br {
  bottom: -1px;
  right: -1px;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #077346 transparent;
}
.c-menu-box--accent {
  border-color: #218a0c;
}
.c-menu-box--accent .c-menu-box__corner--tl, .c-menu-box--accent .c-menu-box__corner--tr {
  border-top-color: #218a0c;
}
.c-menu-box--accent .c-menu-box__corner--bl, .c-menu-box--accent .c-menu-box__corner--br {
  border-bottom-color: #218a0c;
}
.c-menu-box__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-menu-box__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .c-menu-box__row {
    gap: 1.5rem;
  }
}
.c-menu-box__label {
  flex: 0 0 auto;
  width: 150px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #211104;
  min-height: 1.5em;
}
@media (max-width: 767px) {
  .c-menu-box__label {
    color: #077346;
  }
}
.c-menu-box__value {
  flex: 1;
  min-width: 200px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.0075em;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid #077346;
}
@media (min-width: 1024px) {
  .c-menu-box__value {
    padding-left: 1.5rem;
    padding-top: 0;
    border-left: 2px solid #077346;
    border-top: none;
  }
}
.c-menu-box__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(33, 17, 4, 0.15);
  margin: 1rem 0;
}

.c-menu-list {
  background-color: #FFFFFF;
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .c-menu-list {
    padding: 1rem;
    margin-bottom: 2.5rem;
  }
}

.c-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .c-accordion-list {
    gap: 2rem;
  }
}

.c-accordion {
  background-color: #FFFFFF;
  padding: 1.5rem 2.5rem;
  border: 2px solid #077346;
}
@media (max-width: 767px) {
  .c-accordion {
    padding: 1rem;
  }
}
.c-accordion .c-course-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-accordion.is-open .c-course-body {
  grid-template-rows: 1fr;
}
.c-accordion .c-course-body__inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1), transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-accordion.is-open .c-course-body__inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.04s;
}
.c-accordion:not(.is-open) .c-course-body__inner {
  transition-delay: 0s;
}
.c-accordion .c-course-head--accordion {
  transition: margin-bottom 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-accordion.is-open .c-course-head--accordion {
  margin-bottom: 1.5rem;
}

.c-course-head--accordion {
  width: 100%;
  margin-bottom: 0;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
.c-course-head--accordion:focus {
  outline: none;
}
.c-course-head--accordion:focus-visible {
  outline: 2px solid #077346;
  outline-offset: 3px;
}
.c-course-head--accordion .c-course-head__lead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.c-course-head--accordion .c-course-head__titles {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
@media (max-width: 767px) {
  .c-course-head--accordion .c-course-head__titles {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-course-head--accordion .c-course-head__toggle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.c-course-head--accordion .c-course-head__toggle::before, .c-course-head--accordion .c-course-head__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #077346;
  border-radius: 1px;
}
.c-course-head--accordion .c-course-head__toggle::before {
  width: 18px;
  height: 3px;
}
.c-course-head--accordion .c-course-head__toggle::after {
  width: 3px;
  height: 18px;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.c-accordion.is-open .c-course-head__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

@media (prefers-reduced-motion: reduce) {
  .c-course-head--accordion .c-course-head__toggle::after {
    transition-duration: 0.01ms;
  }
  .c-accordion .c-course-body,
  .c-accordion .c-course-body__inner,
  .c-accordion .c-course-head--accordion {
    transition-duration: 0.01ms;
  }
  .c-accordion .c-course-body__inner {
    transform: none;
  }
}
.c-price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed #218a0c;
}
@media (max-width: 767px) {
  .c-price-block {
    gap: 1rem;
  }
}
.c-price-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-price-block__price {
  flex: 0 0 132px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
}
.c-price-block__detail {
  flex: 1;
  min-width: 200px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.c-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-bottom: 1rem;
  align-items: baseline;
}
@media (max-width: 767px) {
  .c-tag-row {
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
  }
}
.c-tag-row:last-child {
  margin-bottom: 0;
}
.c-tag-row__tag {
  flex: 0 0 120px;
  background-color: #077346;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
}
@media (max-width: 767px) {
  .c-tag-row__tag {
    flex-basis: 100%;
    min-width: 120px;
  }
}
.c-tag-row__body {
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  line-height: 2;
  margin: 0;
}

.c-course-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.c-course-head__icon {
  width: 28px;
  height: 28px;
}
.c-course-head__title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #077346;
  margin: 0;
}
@media (max-width: 767px) {
  .c-course-head__title {
    font-size: 1.5rem;
  }
}
.c-course-head__sub {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #077346;
  margin: 0;
}

.c-gw-place {
  margin-bottom: 2rem;
  position: relative;
}
.c-gw-place .c-menu-box__corner--tl {
  border-width: 40px 40px 0 0;
}
.c-gw-place .c-menu-box__corner--tr {
  border-width: 40px 0 0 40px;
}
.c-gw-place .c-menu-box__corner--bl {
  border-width: 0 40px 40px 0;
}
.c-gw-place .c-menu-box__corner--br {
  border-width: 0 0 40px 40px;
}
.c-gw-place .c-menu-box__label {
  color: #077346;
}
.c-gw-place__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.c-gw-place__row:last-child {
  margin-bottom: 0;
}
.c-gw-place__key {
  width: 200px;
  font-weight: 700;
  color: #077346;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.c-gw-place__val {
  flex: 1;
  min-width: 200px;
  color: #616664;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f0f6e7;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .number-badge {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

.grid-item {
  background-color: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}
.grid-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.grid-item {
  text-align: center;
}
.grid-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #077346;
  margin: 0 auto 1rem;
}
.grid-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #322C12;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  margin-bottom: 0.75rem;
}
.grid-item__description {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  margin-bottom: 1rem;
}

.heading-underline {
  position: relative;
  padding-bottom: 2rem;
}
.heading-underline:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-bottom: 3px dashed #077346;
}
@media (min-width: 768px) {
  .heading-underline:after:after {
    width: 68%;
  }
}
.heading-underline--center:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #077346;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-header__description {
  font-size: 1.125rem;
  font-weight: 400;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.btn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f0f6e7;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  min-width: 300px;
  max-width: max-content;
  border-radius: 9999px;
  text-align: center;
  position: relative;
}
.btn-button:hover {
  background-color: #e8810a;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #FFFFFF;
}
.btn-button .icon {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .btn-button {
    font-size: 1.25rem;
    padding: 0.625rem 3rem 0.625rem 2rem;
  }
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  color: #077346;
  background: rgba(255, 255, 255, 0.9);
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50% !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-next:focus {
  outline: 2px solid #077346;
  outline-offset: 2px;
}
@media (min-width: 768px) {
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
  }
  .swiper .swiper-button-prev:after,
  .swiper .swiper-button-next:after {
    font-size: 1.25rem;
  }
}

.pc {
  display: block;
}
@media (max-width: 1023px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 1023px) {
  .sp {
    display: block;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7, 115, 70, 0.1);
  transition: all 0.3s ease-in-out;
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #322C12;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
}
.header__nav-link:hover {
  background-color: #e8f5ef;
  color: #077346;
  text-decoration: none;
}
.header__nav-link:focus {
  background-color: #e8f5ef;
  color: #077346;
}

.p-subnav {
  background-color: #077346;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 2rem 1rem;
}
.p-subnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}
.p-subnav__list > li {
  margin-bottom: 0;
}
.p-subnav__link {
  position: relative;
  display: inline-block;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.009375em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease-in-out;
}
.p-subnav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.15s ease-in-out;
}
.p-subnav__link:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.p-subnav__link:hover::before {
  transform: scaleX(1);
}
.p-subnav__link:focus-visible {
  text-decoration: none;
}
.p-subnav__link:focus-visible::before {
  transform: scaleX(1);
}
.p-subnav__sep {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-subnav.p-lp-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1020;
    transition: transform 0.3s ease-in-out;
  }
  .p-subnav.p-lp-nav.is-hidden {
    transform: translateY(100%);
    pointer-events: none;
  }
  .p-subnav.p-lp-nav {
    padding: 0.75rem 0;
    background: linear-gradient(180deg, #218a0c 0, #077346 100%);
    border-bottom: none;
  }
  .p-subnav.p-lp-nav .p-subnav__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
    max-width: none;
    margin: 0;
    padding: 0 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-width: none;
    text-align: center;
  }
  .p-subnav.p-lp-nav .p-subnav__list::-webkit-scrollbar {
    display: none;
  }
  .p-subnav.p-lp-nav .p-subnav__list > li {
    margin-bottom: 0;
  }
  .p-subnav.p-lp-nav .p-subnav__link {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: clamp(0.8125rem, 2.8vw, 0.9375rem);
    line-height: 1.5;
    letter-spacing: 0.04em;
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
  }
  .p-subnav.p-lp-nav .p-subnav__sep {
    align-self: center;
    width: 1px;
    height: 1.75rem;
    flex-shrink: 0;
    opacity: 0.65;
  }
}

#p-sdining,
#p-sou,
#sdining-tea {
  scroll-margin-top: 5.5rem;
}

#sdining-lunch .p-split__label {
  scroll-margin-top: 13rem;
}

#sdining-dinner .p-split__label {
  scroll-margin-top: 5.2rem;
}

#sou-course h2,
#sou-alacarte h2 {
  scroll-margin-top: 5.5rem;
}

#sdining-lunch,
#sdining-dinner,
#sou-course,
#sou-alacarte {
  scroll-margin-top: 5.5rem;
}

.l-container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.l-section {
  position: relative;
}

/* HERO */
.p-hero {
  position: relative;
  min-height: clamp(360px, 56.25vw, 1080px);
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.p-hero__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-hero__swiper .swiper-wrapper,
.p-hero__swiper .swiper-slide {
  height: 100%;
}
.p-hero__swiper .swiper-slide {
  overflow: hidden;
}
.p-hero__swiper .swiper-slide img {
  width: 105%;
  height: 105%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  animation: p-hero-ken-burns 22s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__swiper .swiper-slide img {
    animation: none;
  }
}
.p-hero__pagination.swiper-pagination {
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  width: 100%;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  transform: none;
}
.p-hero__pagination.swiper-pagination.swiper-pagination-horizontal {
  bottom: clamp(1rem, 3vw, 1.5rem) !important;
}
.p-hero__pagination.swiper-pagination .swiper-pagination-bullet {
  pointer-events: auto;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background-color: #FFFFFF;
  opacity: 0.45;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}
.p-hero__pagination.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.15);
}
.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 17, 6, 0.5);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.p-hero__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 1100px;
}
.p-hero__title-img {
  width: 100%;
  max-width: 1068px;
  margin: 0 auto 1rem;
  display: block;
  height: auto;
}
.p-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #FFFFFF;
}
.p-hero__deco {
  width: min(227px, 28vw);
  height: auto;
  flex-shrink: 0;
}
.p-hero__hotel {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.09em;
  line-height: 1.4;
  margin: 0;
}
.p-hero__period {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0;
}

@keyframes p-hero-ken-burns {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}
/* INTRO */
.p-intro {
  background: linear-gradient(180deg, #077346 0%, #218a0c 100%);
  padding: 7.5rem 0 20rem;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
}
@media (max-width: 768px) {
  .p-intro {
    padding: 3rem 0 10rem;
  }
}
.p-intro::after {
  background-image: url("../img/bg-intro-bottom.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 254px;
  position: absolute;
  bottom: -140px;
  left: 0;
  content: "";
  z-index: 1;
}
.p-intro__inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: end;
  background-image: url("../img/map-hokkaido.svg");
  background-size: contain;
  background-position: 235px center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-intro__inner {
    background-position: top center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1280px) {
  .p-intro__grid {
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: 6.25rem;
    max-width: 1500px;
    margin-left: 2.5rem;
  }
}
.p-intro__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  line-height: 2;
  letter-spacing: 0.24px;
  margin: 0 0 4rem;
  padding-left: 1.8rem;
  border-left: 1px solid rgb(42.504, 177.744, 15.456);
  text-align: left;
  color: #FFFFFF;
  -webkit-text-fill-color: #077346;
  -moz-text-fill-color: #077346;
  -ms-text-fill-color: #077346;
  -o-text-fill-color: #077346;
  -webkit-text-stroke: 9px white;
  -moz-text-stroke: 9px white;
  -ms-text-stroke: 9px white;
  -o-text-stroke: 9px white;
  paint-order: stroke fill;
  -webkit-stroke-linejoin: round;
  -moz-stroke-linejoin: round;
  -ms-stroke-linejoin: round;
  -o-stroke-linejoin: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .p-intro__lead {
    color: #FFFFFF;
    -webkit-text-fill-color: #077346;
    -moz-text-fill-color: #077346;
    -ms-text-fill-color: #077346;
    -o-text-fill-color: #077346;
    -webkit-text-stroke: 3px white;
    -moz-text-stroke: 3px white;
    -ms-text-stroke: 3px white;
    -o-text-stroke: 3px white;
    paint-order: stroke fill;
    -webkit-stroke-linejoin: round;
    -moz-stroke-linejoin: round;
    -ms-stroke-linejoin: round;
    -o-stroke-linejoin: round;
    stroke-linejoin: round;
    font-size: clamp(1.375rem, 5vw, 1.75rem);
    margin: 0 0 2.5rem;
  }
}
.p-intro__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1rem);
  line-height: 1.625;
  letter-spacing: 0.12px;
  margin: 0;
  text-align: left;
  color: #FFFFFF;
  -webkit-text-fill-color: #077346;
  -moz-text-fill-color: #077346;
  -ms-text-fill-color: #077346;
  -o-text-fill-color: #077346;
  -webkit-text-stroke: 6px white;
  -moz-text-stroke: 6px white;
  -ms-text-stroke: 6px white;
  -o-text-stroke: 6px white;
  paint-order: stroke fill;
  -webkit-stroke-linejoin: round;
  -moz-stroke-linejoin: round;
  -ms-stroke-linejoin: round;
  -o-stroke-linejoin: round;
  stroke-linejoin: round;
}
@media (max-width: 768px) {
  .p-intro__text {
    color: #FFFFFF;
    -webkit-text-fill-color: #077346;
    -moz-text-fill-color: #077346;
    -ms-text-fill-color: #077346;
    -o-text-fill-color: #077346;
    -webkit-text-stroke: 1.5px white;
    -moz-text-stroke: 1.5px white;
    -ms-text-stroke: 1.5px white;
    -o-text-stroke: 1.5px white;
    paint-order: stroke fill;
    -webkit-stroke-linejoin: round;
    -moz-stroke-linejoin: round;
    -ms-stroke-linejoin: round;
    -o-stroke-linejoin: round;
    stroke-linejoin: round;
    line-height: 1.9;
  }
}
.p-intro__media {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.p-intro__map {
  width: 100%;
  max-width: 787px;
  margin: 0 auto;
  display: block;
}
.p-intro__collage-top {
  border-radius: 2.5rem 0 0 0;
  overflow: hidden;
  aspect-ratio: 1014/505;
  max-height: 505px;
}
@media (max-width: 767px) {
  .p-intro__collage-top {
    border-radius: 1rem;
  }
}
.p-intro__collage-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-intro__collage-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .p-intro__collage-row {
    grid-template-columns: 358fr 650fr;
    max-height: 296px;
  }
}
.p-intro__collage-img {
  overflow: hidden;
  min-height: 200px;
}
.p-intro__collage-img--left {
  border-radius: 0 0 0 2.5rem;
}
@media (max-width: 767px) {
  .p-intro__collage-img--left {
    border-radius: 1rem;
  }
}
.p-intro__collage-img--right {
  border-radius: 0;
}
@media (max-width: 767px) {
  .p-intro__collage-img--right {
    border-radius: 1rem;
  }
}
.p-intro__collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

/* RESTAURANT */
.p-sou {
  padding: 10rem 0 15rem;
  background-color: #FFFFFF;
}
.p-sou .p-menu-stack {
  padding: 0 3rem 5rem;
}
@media (max-width: 767px) {
  .p-sou .p-menu-stack {
    padding: 0 1rem 4rem;
  }
}

.p-wave--flip-sou {
  margin-bottom: -8rem;
}

.p-wave--flip-gw {
  margin-top: -8rem;
}

.p-restaurant-heading {
  text-align: center;
  padding: 3rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  top: -100px;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media (min-width: 1024px) {
  .p-restaurant-heading {
    top: -220px;
  }
}
.p-restaurant-heading__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 9vw, 8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 0 3rem;
}
@media (min-width: 1024px) {
  .p-restaurant-heading__text {
    padding: 0 6rem;
  }
}
.p-restaurant-heading__text::before, .p-restaurant-heading__text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 65px;
  background-image: url("../img/svg/icon-snow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .p-restaurant-heading__text::before, .p-restaurant-heading__text::after {
    width: 28px;
    height: 33px;
  }
}
.p-restaurant-heading__text::before {
  left: 0;
}
.p-restaurant-heading__text::after {
  right: 0;
}
.p-restaurant-heading__text .p-restaurant-heading__accent {
  color: #FFFFFF;
}

.p-venue-head {
  padding: 0 0;
  text-align: center;
}
.p-venue-head__ornament {
  width: 49px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
}
.p-venue-head__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #077346;
  margin: 0;
}
.p-venue-head__sub {
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.8;
  letter-spacing: 0.0075em;
  color: #077346;
  margin: 0;
}
.p-venue-head__line {
  width: 60px;
  height: 1px;
  background-color: #077346;
  margin: 1.5rem auto 3rem;
}
.p-venue-head__anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .p-venue-head__anchors {
    gap: 2rem;
  }
}
.p-venue-head__anchor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 0.75rem 1rem 0.75rem;
  background-color: #077346;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.375rem);
  letter-spacing: 0.06em;
  transition: all 0.15s ease-in-out;
  margin: 0 1rem;
}
@media (min-width: 1024px) {
  .p-venue-head__anchor {
    width: auto;
    min-width: 200px;
    padding: 0.75rem 4rem 0.75rem;
  }
}
.p-venue-head__anchor:hover {
  background-color: #218a0c;
  color: #FFFFFF;
  text-decoration: none;
}
.p-venue-head__anchor-chevron {
  width: 12px;
  height: 12px;
  border-right: 1px solid #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  transform: rotate(45deg);
  margin-top: 0.25rem;
}
.p-venue-head__desc {
  margin: 3rem auto 4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.9;
  letter-spacing: 0.009375em;
  text-align: center;
}
@media (max-width: 767px) {
  .p-venue-head__desc {
    padding: 0 1.5rem;
    font-size: 1rem;
  }
}

/* SPLIT */
.p-split {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #FFFFFF;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .p-split {
    grid-template-columns: 1fr 1.35fr;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  .p-split--reverse {
    grid-template-columns: 1.35fr 1fr;
  }
}
.p-split__visual {
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.p-split__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.p-split__visual.js-split-gallery > .swiper {
  width: 100%;
  height: 100%;
  min-height: 280px;
}
.p-split__visual.js-split-gallery > .swiper .swiper-wrapper,
.p-split__visual.js-split-gallery > .swiper .swiper-slide {
  height: 100%;
  min-height: 280px;
}
.p-split__visual.js-split-gallery > .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.p-split__visual.js-split-gallery > .swiper-pagination.swiper-pagination {
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 1.5rem !important;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  transform: none;
}
.p-split__visual.js-split-gallery > .swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  pointer-events: auto;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background-color: #FFFFFF;
  opacity: 0.6;
  box-shadow: 0 0 0 1px rgba(7, 115, 70, 0.35);
}
.p-split__visual.js-split-gallery > .swiper-pagination.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #FFFFFF;
}
.p-split__visual.js-split-gallery.p-split__gallery--single > .swiper-pagination {
  display: none !important;
}
.p-split__visual.js-split-gallery.p-split__gallery--single .swiper-slide:not(:first-child) {
  display: none;
}
.p-split__visual.js-split-gallery.p-split__gallery--single > .swiper:not(.swiper-initialized) .swiper-slide,
.p-split__visual.js-split-gallery.p-split__gallery--single > .swiper.swiper-initialized .swiper-slide {
  width: 100% !important;
}
.p-split__visual--rounded-tr {
  border-radius: 0 2.5rem 2.5rem 0;
}
@media (max-width: 1023px) {
  .p-split__visual--rounded-tr {
    border-radius: 0;
  }
}
.p-split__visual--rounded-bl {
  border-radius: 2.5rem 0 0 2.5rem;
}
@media (max-width: 1023px) {
  .p-split__visual--rounded-bl {
    border-radius: 0;
  }
}
.p-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
  .p-split__body {
    max-width: 485px;
    margin-left: 8rem;
    padding: 0;
  }
}
.p-split__label {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 4rem;
}
.p-split__label::before, .p-split__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 33px;
  background-image: url("../img/svg/icon-snow-second.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-split__label::before {
  left: 0;
}
.p-split__label::after {
  right: 0;
}
.p-split__label img {
  width: 28px;
  height: auto;
}
.p-split__label-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #077346;
  margin: 0;
}
.p-split__copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.15px;
  text-align: left;
  max-width: 620px;
  margin: 0;
}
@media (max-width: 767px) {
  .p-split__copy {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .p-split--reverse .p-split__visual {
    order: 2;
  }
  .p-split--reverse .p-split__body {
    order: 1;
  }
}
.p-split--reverse .p-split__body {
  max-width: 604px;
  margin-left: auto;
  margin-right: 5rem;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .p-split--reverse .p-split__body {
    margin-right: 0;
    padding: 1.5rem 1rem;
  }
}

/* MENU */
.p-menu-stack {
  padding: 0 0 5rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-menu-stack {
    padding: 1.5rem 1rem;
  }
}

.p-cta-row {
  text-align: center;
  padding: 3rem 0 3rem;
}

.p-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem 2rem;
}
.p-section-title img {
  width: 28px;
  height: auto;
}
.p-section-title h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #077346;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.0075em;
  position: relative;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .p-section-title h2 {
    padding: 0 2rem;
  }
}
.p-section-title h2::before, .p-section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 33px;
  background-image: url("../img/svg/icon-snow-second.svg");
  background-repeat: no-repeat;
}
.p-section-title h2::before {
  left: 0;
}
.p-section-title h2::after {
  right: 0;
}

.p-course-visual {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 767px) {
  .p-course-visual {
    padding: 0 1rem;
  }
}
.p-course-visual img {
  width: 100%;
  border-radius: 2rem;
  display: block;
}
@media (max-width: 767px) {
  .p-course-visual img {
    border-radius: 1rem;
    object-fit: cover;
    min-height: 230px;
  }
}

.p-alacarte {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 1rem;
}
.p-alacarte-item:not(:last-child) {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-alacarte-item:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.p-alacarte-item .p-cta-row {
  padding-top: 3rem;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .p-alacarte-item--reverse .p-alacarte__grid .p-alacarte__img {
    order: 2;
  }
  .p-alacarte-item--reverse .p-alacarte__grid > div:not(.p-alacarte__img) {
    order: 1;
  }
}
.p-alacarte__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .p-alacarte__grid {
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
  }
}
.p-alacarte__img {
  border-radius: 1rem;
  overflow: hidden;
}
.p-alacarte__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-alacarte__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #077346;
  line-height: 1.2;
  margin: 0 0 2rem;
  border-bottom: 1px solid #077346;
  padding-bottom: 1rem;
  padding-right: 0.5rem;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .p-alacarte__title {
    display: block;
  }
}
.p-alacarte__title::after {
  content: "";
  position: absolute;
  bottom: -0.95rem;
  right: -0.8rem;
  width: 28px;
  height: 28px;
  background-image: url("../img/icon-snow-accent.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-alacarte__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.0075em;
  margin: 0;
}

/* GW HERO */
.p-gw {
  background: linear-gradient(180deg, #077346 0%, #218a0c 100%);
  padding-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .p-gw {
    padding: 0 1rem 4rem;
  }
}

.p-gw-hero {
  padding: 0.5rem 0 4rem;
  text-align: center;
  color: #FFFFFF;
}
.p-gw-hero__ornament {
  width: 49px;
  margin: 0 auto 1.5rem;
  display: block;
}
.p-gw-hero h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0 0 1.5rem;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .p-gw-hero h2 {
    padding: 0 1rem;
  }
}
.p-gw-hero__line {
  width: 60px;
  height: 1px;
  background-color: #FFFFFF;
  margin: 0 auto;
}

.p-gw-card {
  background-color: #FFFFFF;
  max-width: 1080px;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  padding: 3.5rem 2.5rem 2.5rem;
}
@media (max-width: 767px) {
  .p-gw-card {
    padding: 3rem 1rem 2.5rem;
  }
}
.p-gw-card .c-menu-list {
  border: 2px solid #077346;
}
.p-gw-card .p-cta-row {
  padding: 0;
}
.p-gw-card__lead {
  text-align: center;
  margin-bottom: 2.5rem;
}
.p-gw-card__lead h3 {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #077346;
  margin: 0 0 2rem;
}
.p-gw-card__lead p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}
.p-gw-card__img {
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .p-gw-card__img {
    border-radius: 1rem;
    margin-bottom: 2rem;
  }
}
.p-gw-card__img img {
  width: 100%;
  display: block;
}
.p-gw-card__img.js-split-gallery {
  position: relative;
}
.p-gw-card__img.js-split-gallery > .swiper {
  width: 100%;
}
.p-gw-card__img.js-split-gallery > .swiper .swiper-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 230px;
}
.p-gw-card__img.js-split-gallery > .swiper-pagination.swiper-pagination {
  position: absolute;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  bottom: 1.5rem !important;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  transform: none;
}
.p-gw-card__img.js-split-gallery > .swiper-pagination.swiper-pagination .swiper-pagination-bullet {
  pointer-events: auto;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  background-color: #FFFFFF;
  opacity: 0.6;
  box-shadow: 0 0 0 1px rgba(7, 115, 70, 0.35);
}
.p-gw-card__img.js-split-gallery > .swiper-pagination.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #FFFFFF;
}
.p-gw-card__img.js-split-gallery.p-split__gallery--single > .swiper-pagination {
  display: none !important;
}
.p-gw-card__img.js-split-gallery.p-split__gallery--single .swiper-slide:not(:first-child) {
  display: none;
}
.p-gw-card__img.js-split-gallery.p-split__gallery--single > .swiper:not(.swiper-initialized) .swiper-slide,
.p-gw-card__img.js-split-gallery.p-split__gallery--single > .swiper.swiper-initialized .swiper-slide {
  width: 100% !important;
}

/* S.DINING - Afternoon Tea */
.p-sdining__tea .p-gw-footnote {
  padding: 1rem 1rem;
}

/* NOTES */
.p-notes {
  padding: 4rem 0 8rem;
  max-width: 1080px;
  margin: 0 auto;
  color: #616664;
  line-height: 1.625;
  letter-spacing: 0.96px;
}
@media (max-width: 767px) {
  .p-notes {
    padding: 3rem 1rem 4rem;
  }
}
.p-notes > a {
  text-decoration: underline;
}
.p-notes > a:hover {
  color: #218a0c;
  text-decoration: underline;
}
.p-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-notes ul li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0.25rem;
}
.p-notes ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.p-tea-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem 0;
  align-items: start;
}
@media (min-width: 768px) {
  .p-tea-split {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    align-items: center;
    margin-bottom: 3rem;
  }
}
.p-tea-split__copy {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}
.p-tea-split__img {
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 200px;
}
@media (max-width: 767px) {
  .p-tea-split__img {
    border-radius: 1rem;
  }
}
.p-tea-split__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.p-gw-footnote {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #616664;
  line-height: 1.8;
  margin: 2rem 0 0;
  padding: 0 1rem;
}
.p-gw-footnote ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-gw-footnote ul li {
  position: relative;
  padding-left: 1.25em;
  margin-bottom: 0;
}
.p-gw-footnote ul li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.footer {
  text-align: center;
}
@media (max-width: 767px) {
  .footer__top {
    padding: 0 1rem;
  }
}
.footer__btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease-in-out;
}
.footer__btn-button:hover .footer__btn-arrow {
  transform: translateX(4px);
}
.footer__disclaimer {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer__disclaimer {
    text-align: left;
    margin-bottom: 2.5rem;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo {
  width: 100%;
  max-width: 191px;
  height: auto;
  margin: 0 auto 1.5rem;
}
.footer__social {
  padding: 2rem 0;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__social {
    padding: 1.5rem 0 3rem;
  }
}
.footer__social .footer__socials {
  margin-bottom: 0;
}
.footer__map {
  padding: 0;
}
.footer__map-iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}
.footer__links {
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
}
.footer__address {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #616664;
  letter-spacing: 0.06em;
  margin: 0 0 1.5rem;
}
@media (max-width: 767px) {
  .footer__address {
    letter-spacing: 0;
  }
}
.footer__link-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1rem;
  color: #7f7f7f;
}
.footer__link-sep {
  color: #7f7f7f;
  user-select: none;
}
.footer__link {
  color: inherit;
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__copyright {
  font-size: 0.75rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  background-color: #077346;
  margin-bottom: 0;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
    padding: 1rem 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  background: linear-gradient(160deg, #077346 0%, #218a0c 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background 0.15s ease-in-out, border-color 0.15s ease-in-out;
  box-shadow: 0 4px 14px rgba(7, 115, 70, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .back-to-top {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    right: 3rem;
    bottom: 4rem;
  }
}
.back-to-top:hover {
  background: linear-gradient(160deg, rgb(6.58, 108.1, 65.8) 0%, rgb(31.68, 132.48, 11.52) 100%);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(0) scale(1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(7, 115, 70, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.back-to-top:active {
  transform: translateY(0) scale(0.96);
  box-shadow: 0 2px 8px rgba(7, 115, 70, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
}
.back-to-top:focus {
  outline: none;
}
.back-to-top:focus-visible {
  outline: 3px solid #FFFFFF;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #077346, 0 6px 20px rgba(7, 115, 70, 0.35);
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top--visible:hover {
  transform: translateY(-3px) scale(1);
}
.back-to-top--visible:active {
  transform: translateY(0) scale(0.96);
}
.back-to-top__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
@media (min-width: 768px) {
  .back-to-top__icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition-duration: 0.01ms;
  }
  .back-to-top:hover, .back-to-top--visible:hover {
    transform: translateY(0) scale(1);
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.items-baseline {
  align-items: baseline !important;
}

.items-stretch {
  align-items: stretch !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-xs {
  font-size: 0.75rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-base {
  font-size: 1rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.text-5xl {
  font-size: 3rem !important;
}

.text-6xl {
  font-size: 3.75rem !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #077346 !important;
}

.text-primary-light {
  color: #218a0c !important;
}

.text-secondary {
  color: #f0f6e7 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-black {
  color: #322C12 !important;
}

.text-gray {
  color: #333333 !important;
}

.text-gray-dark {
  color: #374151 !important;
}

.bg-primary {
  background-color: #077346 !important;
}

.bg-primary-light {
  background-color: #218a0c !important;
}

.bg-primary-lighter {
  background-color: #e8f5ef !important;
}

.bg-secondary {
  background-color: #f0f6e7 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-gray {
  background-color: #333333 !important;
}

.bg-gray-light {
  background-color: #F9FAFB !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.m-32 {
  margin: 8rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mt-32 {
  margin-top: 8rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.mb-32 {
  margin-bottom: 8rem !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.ml-32 {
  margin-left: 8rem !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mr-32 {
  margin-right: 8rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.p-32 {
  padding: 8rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pt-32 {
  padding-top: 8rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pb-32 {
  padding-bottom: 8rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.pl-32 {
  padding-left: 8rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pr-32 {
  padding-right: 8rem !important;
}

.w-auto {
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

.w-min {
  width: min-content !important;
}

.w-max {
  width: max-content !important;
}

.w-fit {
  width: fit-content !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

.h-min {
  height: min-content !important;
}

.h-max {
  height: max-content !important;
}

.h-fit {
  height: fit-content !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.static {
  position: static !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-visible {
  overflow: visible !important;
}

.rounded-none {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 0.25rem !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-md {
  border-radius: 0.75rem !important;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.rounded-xl {
  border-radius: 1.5rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

@media (max-width: 767px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-grid {
    display: grid !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-end {
    justify-content: flex-end !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
}
@media (min-width: 768px) {
  .md\:d-none {
    display: none !important;
  }
  .md\:d-block {
    display: block !important;
  }
  .md\:d-flex {
    display: flex !important;
  }
  .md\:d-grid {
    display: grid !important;
  }
  .md\:text-left {
    text-align: left !important;
  }
  .md\:text-center {
    text-align: center !important;
  }
  .md\:text-right {
    text-align: right !important;
  }
  .md\:flex-column {
    flex-direction: column !important;
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:justify-start {
    justify-content: flex-start !important;
  }
  .md\:justify-center {
    justify-content: center !important;
  }
  .md\:justify-end {
    justify-content: flex-end !important;
  }
  .md\:justify-between {
    justify-content: space-between !important;
  }
  .md\:items-start {
    align-items: flex-start !important;
  }
  .md\:items-center {
    align-items: center !important;
  }
  .md\:items-end {
    align-items: flex-end !important;
  }
}
.u-text-center {
  text-align: center;
}

.u-mt-lg {
  margin-top: 2rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */
