@charset "UTF-8";
/*
Theme Name: Sugatani.co.jp
Description: Customizable block theme.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}
.sec-ttl .ttl {
  font-size: 24px;
  width: fit-content;
  margin: auto;
}
.sec-ttl .sub {
  color: #C0994E;
  width: fit-content;
  margin: auto;
}
@media (min-width: 1024px) {
  .sec-ttl .ttl {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .sec-ttl.horizontal {
    display: block;
  }
  .sec-ttl.horizontal .ttl {
    margin-right: 12px;
  }
  .sec-ttl.horizontal .ttl, .sec-ttl.horizontal .sub {
    display: inline-block;
  }
}

.sec-ttl.sm {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .sec-ttl.sm {
    display: block;
    flex-direction: row;
  }
  .sec-ttl.sm .ttl {
    font-size: 24px;
    margin-right: 12px !important;
  }
  .sec-ttl.sm .ttl, .sec-ttl.sm .sub {
    width: auto;
    display: inline-block;
  }
}

#ghead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.2s ease-in-out;
}
#ghead.bg {
  background-color: rgba(255, 255, 255, 0.5);
}
#ghead > h2 {
  padding-left: 24px;
}
#ghead .hamburger {
  width: 56px;
  height: 56px;
  cursor: pointer;
  position: relative;
  background: transparent;
  transition: background-color 0.2s ease-in-out;
  /* OPEN (elastic in) */
  /* CLOSE (elastic out) */
}
#ghead .hamburger.bg {
  background-color: #EFEFEF;
}
@media (min-width: 1024px) {
  #ghead .hamburger {
    width: 80px;
    height: 80px;
    background-color: #EFEFEF;
  }
}
#ghead .hamburger > div {
  position: absolute;
  width: 32px;
  height: 2px;
  background-color: black;
  left: 0;
  right: 0;
  margin: auto;
  will-change: transform;
  transform-origin: center;
}
#ghead .hamburger > div:first-of-type {
  top: calc(50% - 6px);
}
#ghead .hamburger > div:last-of-type {
  top: calc(50% + 6px);
}
#ghead .hamburger.open > div:first-of-type {
  animation: elasticTopIn 500ms both;
}
#ghead .hamburger.open > div:last-of-type {
  animation: elasticBottomIn 500ms both;
}
#ghead .hamburger:not(.open) > div:first-of-type {
  animation: elasticTopOut 500ms both;
}
#ghead .hamburger:not(.open) > div:last-of-type {
  animation: elasticBottomOut 500ms both;
}
#ghead .right {
  display: flex;
}
#ghead .right .reservation {
  z-index: -1;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #C0994E;
  color: white;
}
#ghead .right .reservation span {
  display: block;
}
#ghead .right .reservation > span {
  font-size: 12px;
}
#ghead .right .reservation .reservation-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
#ghead .right .reservation .reservation-inner span {
  display: block;
  font-size: 24px;
}
@media (min-width: 1024px) {
  #ghead .right .reservation {
    width: 240px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
  }
}
#ghead nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: none;
  background-color: #FBFBFB;
  padding-top: 60px;
}
@media (min-width: 1024px) {
  #ghead nav {
    padding-top: 80px;
  }
}
#ghead nav .menu {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 1024px) {
  #ghead nav .menu {
    gap: 12px;
  }
}
#ghead nav .menu .menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11px;
}
@media (min-width: 1024px) {
  #ghead nav .menu .menu-item {
    font-size: 16px;
  }
}
#ghead nav .menu .menu-item .menu-subtitle {
  font-size: 10px;
  color: #C0994E;
}
@media (min-width: 1024px) {
  #ghead nav .menu .menu-item .menu-subtitle {
    font-size: 11px;
  }
}
#ghead nav .bottom > li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 12px 0;
  background-color: #394C5B;
  color: #EFEFEF;
}
#ghead nav .bottom > li span, #ghead nav .bottom > li img {
  display: block;
}
#ghead nav .bottom > li.contact {
  padding: 8px 0;
  font-size: 16px;
  background-color: #EFEFEF;
  color: #212F39;
}
#ghead nav .bottom > li.contact a {
  display: flex;
  gap: 8px;
}
@media (min-width: 1024px) {
  #ghead nav .bottom .reservation {
    display: none;
  }
}
#ghead nav.open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  overflow-y: scroll;
}
#ghead nav .menu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #ghead nav {
    padding-top: 120px;
    left: auto;
    bottom: auto;
    margin-left: auto;
    width: 320px;
    height: 100vh;
    box-sizing: border-box;
  }
}

/* Keyframes: overshoot -> settle */
@keyframes elasticTopIn {
  0% {
    transform: translateY(0) rotate(0);
  }
  60% {
    transform: translateY(8px) rotate(56deg);
  } /* overshoot */
  80% {
    transform: translateY(5px) rotate(42deg);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes elasticBottomIn {
  0% {
    transform: translateY(0) rotate(0);
  }
  60% {
    transform: translateY(-8px) rotate(-56deg);
  } /* overshoot */
  80% {
    transform: translateY(-5px) rotate(-42deg);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* Reverse with a little recoil past 0 */
@keyframes elasticTopOut {
  0% {
    transform: translateY(6px) rotate(45deg);
  }
  60% {
    transform: translateY(-2px) rotate(-10deg);
  } /* recoil */
  80% {
    transform: translateY(1px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes elasticBottomOut {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  60% {
    transform: translateY(2px) rotate(10deg);
  } /* recoil */
  80% {
    transform: translateY(-1px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#part-page-top {
  position: relative;
  width: 100%;
  height: 100vh;
}
#part-page-top .top-post {
  background-color: rgba(239, 239, 239, 0.7);
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  padding: 12px 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
#part-page-top .top-post .post-label {
  font-size: 16px;
}
@media (min-width: 1024px) {
  #part-page-top .top-post {
    bottom: 2rem;
    right: 0;
    left: auto;
    width: fit-content;
  }
}
#part-page-top .scroll-indicator {
  z-index: 10;
  position: absolute;
  margin-top: -15rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  display: block;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  #part-page-top .scroll-indicator {
    margin-top: -5rem;
  }
}

.faq-section {
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: auto;
  box-sizing: border-box;
  margin-top: 64px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .faq-section {
    margin-top: 200px;
    margin-bottom: 200px;
  }
}

.faq-accordion {
  max-width: 1280px;
  margin: 0 auto;
  background-color: white;
}
.faq-accordion .faq-item:not(last-of-type) {
  margin-bottom: -1px;
}
.faq-accordion .faq-question,
.faq-accordion .faq-answer-content {
  padding: 12px;
}
.faq-accordion .faq-question {
  width: 100%;
  background: none;
  border: 1px solid #C0994E;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #C0994E;
  transition: color 0.3s ease;
}
.faq-accordion .faq-question-text {
  flex: 1;
}
.faq-accordion .faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.faq-accordion .faq-icon .faq-icon-line {
  position: absolute;
  background-color: #C0994E;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-accordion .faq-icon .faq-icon-horizontal {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion .faq-icon .faq-icon-vertical {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-accordion .faq-icon.open .faq-icon-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-accordion .faq-answer {
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq-accordion .faq-answer .faq-answer-content {
  color: #212F39;
  line-height: 1.6;
}
.faq-accordion .faq-answer .faq-answer-content p {
  margin-bottom: 1rem;
}
.faq-accordion .faq-answer .faq-answer-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .mobile-slider .swiper-button-prev,
  .mobile-slider .swiper-button-next,
  .mobile-slider .swiper-pagination {
    display: none;
  }
}
@media (min-width: 768px) {
  .mobile-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
.mobile-slider .swiper-slide {
  padding: 0 2rem;
}
.mobile-slider .swiper-slide a {
  display: block;
}
.mobile-slider .swiper-slide a:hover {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .mobile-slider .swiper-slide {
    grid-column: span 1;
    padding: 0;
  }
}
.mobile-slider .swiper-button-prev,
.mobile-slider .swiper-button-next {
  width: 32px;
  height: 32px;
  border: 1px solid black;
  background: url(assets/icons/left-swiper.svg) no-repeat center center;
  border-radius: 50%;
}
.mobile-slider .swiper-button-prev::after,
.mobile-slider .swiper-button-next::after {
  content: "";
}
.mobile-slider .swiper-button-next {
  background: url(assets/icons/right-swiper.svg) no-repeat center center;
}
.mobile-slider .mobile-slide-title {
  margin-top: 8px;
}

.pattern-concept .wp-block-cover__background {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.pattern-concept .wp-block-cover__inner-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) {
  .pattern-concept .wp-block-cover__inner-container {
    padding: 8rem 2rem;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 2rem;
  }
}
.pattern-concept .wp-block-cover__inner-container .concept-label {
  position: absolute;
  top: 2rem;
  right: 0;
  opacity: 0.1;
  font-size: 10vw;
}
@media (min-width: 1024px) {
  .pattern-concept .wp-block-cover__inner-container .concept-label {
    font-size: 8vw;
    top: 3rem;
  }
}
.pattern-concept .wp-block-cover__inner-container .wp-block-heading,
.pattern-concept .wp-block-cover__inner-container .concept-description {
  display: block;
}
@media (min-width: 1024px) {
  .pattern-concept .wp-block-cover__inner-container .wp-block-heading,
  .pattern-concept .wp-block-cover__inner-container .concept-description {
    writing-mode: vertical-rl;
    height: auto;
    max-height: 24rem;
  }
}
.pattern-concept .wp-block-cover__inner-container .wp-block-heading {
  font-size: 24px;
}
@media (min-width: 1024px) {
  .pattern-concept .wp-block-cover__inner-container .wp-block-heading {
    font-size: 24px;
    padding-left: 2rem;
  }
}
.pattern-concept .wp-block-cover__inner-container .concept-description {
  line-height: 2em;
}

.pattern-section-links {
  margin-bottom: 64px;
}
.pattern-section-links .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 4rem;
  padding-top: 160px;
}
.pattern-section-links .section-header .wp-block-heading {
  font-size: 24px;
}
.pattern-section-links .section-header .subtitle {
  color: #C0994E;
}
.pattern-section-links .section-header::before {
  content: "";
  background: url(assets/ornaments/stain-a.png) no-repeat center center;
  display: block;
  width: 240px;
  height: 138px;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 1024px) {
  .pattern-section-links .section-header {
    padding-top: 320px;
  }
  .pattern-section-links .section-header::before {
    bottom: 5rem;
  }
}
.pattern-section-links .wp-block-columns {
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .pattern-section-links .wp-block-columns {
    flex-direction: row;
  }
}
.pattern-section-links .wp-block-cover, .pattern-section-links .wp-block-cover-image {
  min-height: min-content;
  height: 100%;
}
.pattern-section-links .wp-block-cover__background {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.pattern-section-links .wp-block-cover__inner-container {
  height: auto;
  padding: 64px 16px 48px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  height: 100%;
}
@media (min-width: 1024px) {
  .pattern-section-links .wp-block-cover__inner-container {
    padding: 120px 16px 64px;
  }
}
.pattern-section-links .link-number {
  font-size: 32px;
  width: 2em;
  height: 2em;
  background-color: rgba(239, 239, 239, 0.34);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.pattern-section-links .link-title {
  font-size: 20px;
  line-height: 1.4;
}
.pattern-section-links .link-url {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  align-self: stretch; /* Override the centering */
  width: 100%;
  box-sizing: border-box;
  padding: 0.25em 1em;
  border-radius: 20px;
  max-width: 16em;
  margin: auto;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.2s ease-in-out;
}
.pattern-section-links .link-url::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("assets/icons/right.svg");
}
.pattern-section-links .link-url:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.pattern-section-intro__number {
  font-size: 54px;
  width: 128px;
  height: 128px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #C0994E;
  border-radius: 50%;
  border: 1px solid #C0994E;
  margin-bottom: -64px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .pattern-section-intro__number {
    margin-left: 10vw;
    font-size: 100px;
    width: 240px;
    height: 240px;
    margin-bottom: -120px;
  }
}

.pattern-section-intro.s3 {
  color: white;
  padding: 2rem;
  padding-top: 96px;
  padding-bottom: 120px;
  z-index: 1;
  position: relative;
}
@media (min-width: 1024px) {
  .pattern-section-intro.s3 {
    padding-top: 120px;
  }
}
.pattern-section-intro.s3 .seasonal-images {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pattern-section-intro.s3 .seasonal-images::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (min-width: 1024px) {
  .pattern-section-intro.s3 .seasonal-images {
    flex-direction: row;
  }
}
.pattern-section-intro.s3 .seasonal-images figure {
  display: flex;
  margin: 0;
  height: 25%;
}
@media (min-width: 1024px) {
  .pattern-section-intro.s3 .seasonal-images figure {
    flex: 1 1 0;
    height: 100%;
    width: 100%;
  }
}
.pattern-section-intro.s3 .seasonal-images figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.pattern-section-intro {
  position: relative;
  min-height: min-content;
}
.pattern-section-intro.room .wp-block-cover__inner-container {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .pattern-section-intro.room .wp-block-cover__inner-container {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .pattern-section-intro.room .wp-block-cover__inner-container .wp-block-heading {
    margin-bottom: 0;
  }
}
.pattern-section-intro .wp-block-cover__inner-container {
  padding: 2rem;
  padding-top: 96px;
  padding-bottom: 120px;
}
@media (min-width: 1024px) {
  .pattern-section-intro .wp-block-cover__inner-container {
    padding-top: 120px;
  }
}
.pattern-section-intro .label {
  font-size: 60px;
  color: rgba(239, 239, 239, 0.15);
  position: absolute;
  left: 2rem;
  top: 0;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .pattern-section-intro .label {
    left: 13vw;
    top: 2.5rem;
    font-size: 80px;
  }
}
.pattern-section-intro .wp-block-heading {
  font-size: 24px;
  text-align: center;
  padding-top: 1em;
  margin-bottom: 1em;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .pattern-section-intro .wp-block-heading {
    padding-top: 0;
    text-align: left;
    font-size: 40px;
    max-width: calc(100% - 23vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.pattern-section-intro p {
  max-width: 40em;
  margin: auto;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .pattern-section-intro p {
    max-width: calc(100% - 40vw);
  }
}

#spa-section {
  margin-top: 2rem;
}
#spa-section .slider_with_thumbs {
  max-width: 1280px;
  margin: auto;
}
#spa-section .spa-content {
  max-width: 1280px;
  margin: auto;
  padding: 2rem;
  position: relative;
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  #spa-section .spa-content {
    padding-bottom: 10rem;
    display: flex;
    gap: 4rem;
    align-items: center;
  }
  #spa-section .spa-content .spa-left {
    width: 64%;
  }
  #spa-section .spa-content .spa-right {
    width: 36%;
  }
}
#spa-section .spa-content::before, #spa-section .spa-content::after {
  content: "";
  display: block;
  width: 30vw;
  height: 30vw;
  position: absolute;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
@media (min-width: 1024px) {
  #spa-section .spa-content::before, #spa-section .spa-content::after {
    width: 20vw;
    height: 20vw;
  }
}
#spa-section .spa-content:before {
  background-image: url(assets/ornaments/stain-b.png);
  right: -5vw;
  top: -5vw;
}
@media (min-width: 1024px) {
  #spa-section .spa-content:before {
    top: -1;
    right: 0;
  }
}
#spa-section .spa-content:after {
  background-image: url(assets/ornaments/stain-c.png);
  bottom: 0;
  left: 0;
}
#spa-section .spa-left .spa-title-block {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 1em;
}
#spa-section .spa-left .spa-title-block h2 {
  font-size: 20px;
}
#spa-section .spa-left .spa-title-block::after {
  content: "";
  display: block;
  background-color: #C0994E;
  flex: 1 1 0%;
  height: 1px;
  margin-left: 8px;
}
#spa-section .spa-right {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  #spa-section .spa-right {
    margin-top: 0;
  }
}
#spa-section .spa-right > h2 {
  font-family: 20px;
  background-color: #212F39;
  color: #EFEFEF;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 12px;
}
.dish-section {
  position: relative;
  padding-top: 48px;
}
.dish-section::before {
  display: block;
  content: "";
  background: url(assets/ornaments/stain-d.png) no-repeat center center;
  width: 200px;
  aspect-ratio: 1;
  position: absolute;
  top: -92px;
  left: 0;
  right: 0;
  margin: auto;
}
.dish-section > .sec-ttl {
  font-size: 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.dish-section .dish-sections .dish-content {
  display: none;
  padding: 0 0 48px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.dish-section .dish-sections .dish-content::after {
  content: "";
  display: block;
  width: 30vw;
  height: 20vw;
  background: url(assets/ornaments/stain_meal.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 7vw;
  right: -5vw;
  z-index: -1;
}
@media (min-width: 1024px) {
  .dish-section .dish-sections .dish-content {
    padding-bottom: 160px;
    padding-left: 0;
    padding-right: 0;
  }
}
.dish-section .dish-sections .dish-content > p > a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: auto;
  margin-top: 48px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  background-color: #c0994e;
  border: 1px solid #C0994E;
}
.dish-section .dish-sections .dish-content > p > a:hover {
  border: 1px solid black;
  background-color: #C0994E;
}
.dish-section .dish-sections .dish-content > p > a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("assets/icons/right-blk.svg");
}
.dish-section .dish-sections .dish-content.active {
  display: block;
}

.dish-section .dish-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
  /* Hide navigation buttons by default */
  /* Mobile: Enable swiper behavior */
  /* Desktop: Regular flex behavior */
}
.dish-section .dish-tabs .dish-navigation {
  display: none;
}
@media (max-width: 767px) {
  .dish-section .dish-tabs .swiper-wrapper {
    height: auto;
  }
  .dish-section .dish-tabs .swiper-slide {
    border: 1px solid #212F39;
    height: auto;
    min-height: fit-content;
  }
  .dish-section .dish-tabs .dish-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
  }
  .dish-section .dish-tabs .dish-navigation .dish-button-prev,
  .dish-section .dish-tabs .dish-navigation .dish-button-next {
    position: static;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0;
    cursor: pointer;
    background: url(assets/icons/left-swiper.svg) no-repeat center center;
    display: block;
    content: "";
    position: relative;
  }
  .dish-section .dish-tabs .dish-navigation .dish-button-prev::before,
  .dish-section .dish-tabs .dish-navigation .dish-button-next::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 1px solid black;
    border-radius: 50%;
    z-index: -1;
  }
  .dish-section .dish-tabs .dish-navigation .dish-button-prev:after,
  .dish-section .dish-tabs .dish-navigation .dish-button-next:after {
    display: none;
  }
  .dish-section .dish-tabs .dish-navigation .dish-button-next {
    background-image: url(assets/icons/right-swiper.svg);
  }
}
@media (min-width: 768px) {
  .dish-section .dish-tabs .swiper {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .dish-section .dish-tabs .swiper-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .dish-section .dish-tabs .swiper-slide {
    grid-column: span 1;
  }
  .dish-section .dish-tabs .dish-navigation {
    display: none;
  }
}
.dish-section .dish-tabs .tab-button {
  cursor: pointer;
  text-align: center;
  padding: 0.25em 1em;
  white-space: nowrap;
  border: 1px solid #212F39;
  transition: background-color 0.2s ease-in-out;
}
.dish-section .dish-tabs .tab-button.active {
  border: 1px solid #C0994E;
  background-color: #C0994E;
}

.room-section {
  margin-bottom: 96px;
}
@media (min-width: 1024px) {
  .room-section {
    margin-bottom: 240px;
  }
}
.room-section .intro {
  padding: 48px 2rem;
  max-width: 800px;
  margin: auto;
}
@media (min-width: 1024px) {
  .room-section .intro {
    padding: 96px 2rem;
  }
}

.room-sections {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  line-break: anywhere;
}
.room-sections .room-content {
  display: none;
}
.room-sections .room-content.active {
  display: block;
}
.room-sections .room-info {
  margin-top: 2rem;
  background-color: white;
  padding: 2rem 2rem 4rem;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .room-sections .room-info {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 48px;
  }
  .room-sections .room-info .left {
    grid-column: span 3;
    grid-row: 1;
    border-right: 1px solid #212F39;
    padding-right: 48px;
  }
  .room-sections .room-info .right {
    grid-row: 1;
    grid-column: span 2;
  }
}
.room-sections .left {
  margin-bottom: 48px;
  border-bottom: 1px solid #212F39;
  padding-bottom: 48px;
}
@media (min-width: 1024px) {
  .room-sections .left {
    margin-bottom: 0;
    border-bottom: none;
  }
}
.room-sections .left .head {
  border-bottom: 1px solid #212F39;
  margin-bottom: 20px;
}
.room-sections .left .head h3 {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .room-sections .left .head {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
}
.room-sections .left p {
  line-break: anywhere;
}
.room-sections .right ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.room-sections .right ul li h4::after {
  content: ":";
}
@media (min-width: 1024px) {
  .room-sections .right ul li {
    display: flex;
  }
  .room-sections .right ul li h4 {
    width: 8rem;
    text-align: justify;
  }
  .room-sections .right ul li p {
    width: calc(100% - 8rem);
  }
}
.room-sections .link {
  grid-column: 1/-1;
}
.room-sections .link a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: auto;
  margin-top: 48px;
  width: fit-content;
  padding: 0 20px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #C0994E;
  background-color: #C0994E;
}
@media (min-width: 1024px) {
  .room-sections .link a {
    margin-top: 0;
  }
}
.room-sections .link a:hover {
  border: 1px solid black;
  background-color: white;
}
.room-sections .link a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("assets/icons/right-blk.svg");
}

.room-tabs-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  gap: 8px;
}
@media (min-width: 1024px) {
  .room-tabs-wrapper {
    flex-direction: row;
    gap: 1rem;
  }
}

.room-tabs .select2 {
  position: relative;
  overflow: hidden;
  display: block;
  margin: auto;
  height: 100%;
  border-bottom: 0px;
  font-size: 12px;
  border: 1px solid black;
}
.room-tabs .select2 i.toggle {
  position: absolute;
  z-index: 4;
  right: 0.5em;
  top: 0.75em;
  border: 1px solid black;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  border-radius: 50%;
  line-height: 1.25;
}
.room-tabs .select2 .title,
.room-tabs .select2 .placeholder {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.55em 2em;
  padding-right: 3.5em;
  cursor: pointer;
}
.room-tabs .select2 .toggle {
  font-style: normal;
}
.room-tabs .select2 > label > input {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  cursor: pointer;
}
.room-tabs .select2 > label > input:checked {
  z-index: 2;
}
.room-tabs .select2 > label > input:checked ~ i.toggle.icon-plus {
  display: none;
}
.room-tabs .select2 > label > input:checked ~ i.toggle.icon-minus {
  display: block;
}
.room-tabs .select2 > label > input:not(:checked) ~ i.toggle.icon-minus {
  display: none;
}
.room-tabs .select2 > label > input:not(:checked) ~ i.toggle.icon-plus {
  display: block;
}
.room-tabs .select2 > label > input:not(:checked) ~ label.option input:not(:checked) ~ .title {
  display: none !important;
}
.room-tabs .select2 > label > input:not(:checked) ~ label.option input:checked ~ .title {
  display: none !important;
}
.room-tabs .select2 > label > input:disabled {
  cursor: no-drop;
}
.room-tabs .select2 label > span.placeholder {
  position: relative;
  z-index: 0;
  display: inline-block;
  width: 100%;
  border-top: 0px;
}
.room-tabs .select2 label.option {
  display: block;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  transition: all 1s ease-out;
}
.room-tabs .select2 label.option span.title {
  position: relative;
  z-index: 2;
  transition: background 0.3s ease-out;
}
.room-tabs .select2 label.option input {
  display: none;
}
.room-tabs .select2 label.option input:checked ~ span.title {
  position: relative;
  display: block;
  z-index: 2;
  opacity: 0.5;
}
.room-tabs .select2 label.option input:disabled ~ span.title {
  opacity: 0.7;
}
.room-tabs .select2 label.option input:disabled ~ span.title:hover {
  background: none;
  cursor: no-drop;
}

.access-section {
  padding-top: 0;
  padding-bottom: 8rem;
  background-color: white;
}
.access-section > .sec-ttl {
  background: url(assets/ornaments/bg.png);
  background-color: #EFEFEF;
  padding-bottom: 3rem;
  margin-bottom: 0;
  padding-top: 8rem;
}
.access-section .access-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4rem;
}
.access-section .access-buttons .wp-block-button__link {
  border-radius: 0;
  background-color: transparent;
  border: 1px solid #212F39;
  color: #212F39;
  padding: 4px 20px;
  min-width: 10em;
  text-align: center;
}
.access-section .access-buttons .active {
  background-color: #C0994E;
  border: 1px solid #C0994E;
}
.access-section iframe {
  margin-bottom: 4rem;
}
.access-section .access-item {
  width: 100%;
}
.access-section .access-item .sec-ttl.sm .ttl, .access-section .access-item .sec-ttl.sm .sub {
  margin-right: auto;
  margin-left: 0;
}
.access-section .access-content {
  max-width: 1280px;
  margin: auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
.access-section .access-details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}
@media (min-width: 1024px) {
  .access-section .access-details {
    flex-direction: row;
    gap: 2rem;
  }
  .access-section .access-details .access-image,
  .access-section .access-details .access-text {
    width: 50%;
    display: block;
  }
}
.access-section .access-text {
  width: 100%;
  border: 1px solid #C0994E;
  padding: 2rem 1rem;
}
.access-section .access-text h4 {
  font-size: 20px;
}

.news-section {
  max-width: 1280px;
  padding: 0 2rem;
  margin: 64px auto 0;
}
@media (min-width: 768px) {
  .news-section {
    margin-top: 200px;
  }
}
.news-section .sec-ttl .ttl,
.news-section .sec-ttl .sub {
  margin-left: 0;
}
.news-section .post-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-section .post-list a:hover {
  text-decoration: underline;
}
.news-section .post-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  border-bottom: 1px solid #212F39;
}
.news-section .post-item time {
  font-size: 20px;
}
@media (min-width: 768px) {
  .news-section .post-item {
    flex-direction: row;
    align-items: baseline;
    gap: 1rem;
  }
}
.news-section .link {
  margin-top: 4rem;
}
.news-section .link a {
  text-decoration: underline;
  display: block;
  width: fit-content;
  margin-left: auto;
}

#yoyaku-wrapper {
  margin-left: auto;
  margin-right: auto;
  margin: 4rem auto;
  width: calc(100% - 4rem);
}
@media (min-width: 1024px) {
  #yoyaku-wrapper {
    width: fit-content;
  }
}
#yoyaku-wrapper .yoyaku-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 8px;
}
@media (min-width: 768px) {
  #yoyaku-wrapper .yoyaku-links {
    gap: 16px;
    justify-content: flex-end;
    margin-top: 1rem;
    flex-direction: row;
  }
}
#yoyaku-wrapper .yoyaku-links br {
  display: none;
}
#yoyaku-wrapper .yoyaku-links a {
  border-bottom: 1px solid #212F39;
  display: flex;
  align-items: center;
}
#yoyaku-wrapper .yoyaku-links a::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("assets/icons/right_blue.svg");
}
#yoyaku-wrapper .yoyaku-links a:hover {
  opacity: 0.5;
}

#yoyaku {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: auto;
  width: 100%;
  margin: auto;
  background-color: #F8F8F8;
}
@media (min-width: 1024px) {
  #yoyaku {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1360px;
    width: fit-content;
  }
}
#yoyaku .head {
  display: flex;
  background-color: #C0994E;
  padding: 8px;
  color: white;
  justify-content: center;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  gap: 4px;
}
@media (min-width: 1024px) {
  #yoyaku .head {
    width: 10rem;
  }
}
#yoyaku .head::before {
  display: block;
  content: "";
  width: 1.3em;
  height: 0.75em;
  background: url(assets/icons/calendar.svg) no-repeat center center;
  background-size: contain;
}
#yoyaku .inner {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  #yoyaku .inner {
    padding-top: 1rem;
    flex-direction: row;
    align-items: center;
    padding: 1rem 3rem;
    justify-content: space-around;
    width: calc(100% - 10rem);
  }
}
#yoyaku form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  #yoyaku form {
    gap: 32px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
#yoyaku .date_489ban {
  margin: 0 !important;
}
#yoyaku .date_489ban dd {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  #yoyaku .date_489ban dd {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
#yoyaku .date_489ban dd label {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
#yoyaku .date_489ban dd label input {
  display: block;
}
#yoyaku .stay_489ban select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 1px solid #212F39;
  width: 100%;
  box-sizing: border-box;
  min-width: 7em;
  padding: 0.5em 2.5em 0.5em 1em;
  background: url(assets/icons/down-gold.svg) no-repeat right 1em center/1em, #fff;
}
#yoyaku input[type=date] {
  background-color: white;
  padding: 0.5em 1em;
  padding-right: 2.5em;
  border: 1px solid #212F39;
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
#yoyaku input[type=date]::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url(assets/icons/down-gold.svg) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
#yoyaku button[type=button] {
  background-color: #212F39;
  color: white;
  padding: 12px 24px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
#yoyaku button[type=button]:hover {
  color: #212F39;
  background-color: #C0994E;
}
#yoyaku .box_tel h2 {
  border-bottom: 1px solid #212F39;
}
#yoyaku .box_tel .tel-link {
  display: block;
  font-size: 24px;
}
#yoyaku .box_tel .tel-info {
  display: block;
}

.picked-news-section {
  max-width: 1280px;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 64px auto;
}
@media (min-width: 1024px) {
  .picked-news-section {
    margin: 200px auto;
  }
}
.picked-news-section .head {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #212F39;
}
@media (min-width: 1024px) {
  .picked-news-section .head {
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
}
@media (min-width: 1024px) {
  .picked-news-section .sec-ttl {
    flex-direction: row;
    gap: 20px;
    align-items: baseline;
  }
  .picked-news-section .sec-ttl .ttl, .picked-news-section .sec-ttl .sub {
    width: auto;
    margin: 0;
  }
}
.picked-news-section .link {
  margin-top: 4rem;
}
.picked-news-section .link a {
  text-decoration: underline;
  display: block;
  width: fit-content;
  margin-left: auto;
}
.picked-news-section .news-date {
  font-size: 20px;
}

.news-thumbnail {
  margin-bottom: 1rem;
}

.picked-news-section .post-content h1,
.picked-news-section .post-content h2,
.picked-news-section .post-content h3,
.picked-news-section .post-content h4,
.picked-news-section .post-content h5,
.picked-news-section .post-content h6 {
  color: #212F39;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .picked-news-section .post-content h1,
  .picked-news-section .post-content h2,
  .picked-news-section .post-content h3,
  .picked-news-section .post-content h4,
  .picked-news-section .post-content h5,
  .picked-news-section .post-content h6 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.picked-news-section .post-content h1 {
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content h1 {
    font-size: 32px;
  }
}
.picked-news-section .post-content h2 {
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content h2 {
    font-size: 24px;
  }
}
.picked-news-section .post-content h3 {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content h3 {
    font-size: 20px;
  }
}
.picked-news-section .post-content h4,
.picked-news-section .post-content h5,
.picked-news-section .post-content h6 {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content h4,
  .picked-news-section .post-content h5,
  .picked-news-section .post-content h6 {
    font-size: 16px;
  }
}
.picked-news-section .post-content .has-huge-font-size {
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .has-huge-font-size {
    font-size: 32px;
  }
}
.picked-news-section .post-content .has-large-font-size {
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .has-large-font-size {
    font-size: 24px;
  }
}
.picked-news-section .post-content .has-medium-font-size {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .has-medium-font-size {
    font-size: 20px;
  }
}
.picked-news-section .post-content p {
  color: #212F39;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content p {
    font-size: 16px;
  }
}
.picked-news-section .post-content .wp-block-list {
  color: #212F39;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .wp-block-list {
    font-size: 16px;
  }
}
.picked-news-section .post-content .wp-block-list li {
  margin-bottom: 0.5rem;
}
.picked-news-section .post-content .wp-block-quote {
  border-left: 4px solid #C0994E;
  padding-left: 1rem;
  margin: 2rem 0;
  color: #212F39;
  font-style: italic;
}
.picked-news-section .post-content .wp-block-quote cite {
  font-size: 14px;
  color: rgb(70.4, 100.2666666667, 121.6);
}
.picked-news-section .post-content .wp-block-button {
  margin: 1rem 0;
}
.picked-news-section .post-content .wp-block-button .wp-block-button__link {
  background-color: #C0994E;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .wp-block-button .wp-block-button__link {
    font-size: 16px;
  }
}
.picked-news-section .post-content .wp-block-button .wp-block-button__link:hover {
  background-color: rgb(161.5125, 125.925, 57.4875);
}
.picked-news-section .post-content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #C0994E;
  border: 2px solid #C0994E;
}
.picked-news-section .post-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #C0994E;
  color: white;
}
.picked-news-section .post-content .wp-block-image {
  margin: 2rem 0;
}
.picked-news-section .post-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.picked-news-section .post-content .wp-block-image figcaption {
  font-size: 14px;
  color: rgb(70.4, 100.2666666667, 121.6);
  text-align: center;
  margin-top: 0.5rem;
}
.picked-news-section .post-content .wp-block-image.alignleft {
  float: left;
  margin-right: 1rem;
}
.picked-news-section .post-content .wp-block-image.alignright {
  float: right;
  margin-left: 1rem;
}
.picked-news-section .post-content .wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.picked-news-section .post-content .wp-block-gallery {
  margin: 2rem 0;
}
.picked-news-section .post-content .wp-block-gallery .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.picked-news-section .post-content .wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.picked-news-section .post-content .wp-block-cover {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container {
  text-align: center;
  color: white;
  z-index: 2;
}
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h1,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h2,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h3,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h4,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h5,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container h6,
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container p {
  color: white;
}
.picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container p {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .wp-block-cover .wp-block-cover__inner-container p {
    font-size: 24px;
  }
}
.picked-news-section .post-content .wp-block-group {
  margin: 2rem 0;
}
.picked-news-section .post-content .wp-block-group.has-background {
  padding: 2rem;
}
.picked-news-section .post-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .picked-news-section .post-content .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.picked-news-section .post-content .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .picked-news-section .post-content .wp-block-columns .wp-block-column {
    flex: 100%;
  }
}
.picked-news-section .post-content .wp-block-separator {
  border: none;
  border-top: 2px solid #EFEFEF;
  margin: 3rem auto;
  max-width: 100px;
}
.picked-news-section .post-content .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.picked-news-section .post-content .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.picked-news-section .post-content .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #C0994E;
  font-size: 24px;
  letter-spacing: 1rem;
}
.picked-news-section .post-content .wp-block-spacer {
  clear: both;
}
.picked-news-section .post-content .wp-block-code {
  background-color: #EFEFEF;
  border: 1px solid rgb(213.5, 213.5, 213.5);
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}
.picked-news-section .post-content .wp-block-code code {
  font-family: monospace;
  font-size: 14px;
  color: #212F39;
}
.picked-news-section .post-content .wp-block-preformatted {
  background-color: #EFEFEF;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 14px;
}
.picked-news-section .post-content .wp-block-table {
  margin: 2rem 0;
  overflow-x: auto;
}
.picked-news-section .post-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.picked-news-section .post-content .wp-block-table table th,
.picked-news-section .post-content .wp-block-table table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #EFEFEF;
}
.picked-news-section .post-content .wp-block-table table th {
  background-color: #EFEFEF;
  font-weight: bold;
  color: #212F39;
}
.picked-news-section .post-content .wp-block-table table td {
  color: #212F39;
}
.picked-news-section .post-content .wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
  background-color: rgb(251.75, 251.75, 251.75);
}
.picked-news-section .post-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .wp-block-media-text {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .picked-news-section .post-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    order: 1;
  }
  .picked-news-section .post-content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    order: 2;
  }
}
.picked-news-section .post-content .wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: auto;
}
.picked-news-section .post-content .wp-block-media-text .wp-block-media-text__content {
  padding: 1rem;
}

.seasonal-event {
  max-width: 1280px;
  margin: 160px auto;
}
@media (min-width: 1024px) {
  .seasonal-event {
    margin: 48px auto;
  }
}

.sightseeing {
  padding: 160px 0;
  background: #212F39;
  color: white;
}
@media (min-width: 1024px) {
  .sightseeing {
    padding: 48px 0;
  }
}
.sightseeing .sec-ttl, .sightseeing .sightseeing-slider {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.sightseeing .mobile-slider .swiper-button-prev,
.sightseeing .mobile-slider .swiper-button-next {
  border-color: white;
  background-size: 12px;
}
.sightseeing .mobile-slider .swiper-button-prev {
  background-image: url(assets/icons/left-swiper-white.svg);
}
.sightseeing .mobile-slider .swiper-button-next {
  background-image: url(assets/icons/right-swiper-white.svg);
}

.pattern-morning {
  margin-bottom: 160px;
}
@media (min-width: 1024px) {
  .pattern-morning {
    margin-bottom: 240px;
  }
}
@media (min-width: 1024px) {
  .pattern-morning {
    margin-bottom: 320px;
  }
}
.pattern-morning .top {
  padding-top: 0;
  min-height: auto;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .pattern-morning .top {
    padding-bottom: 100px;
  }
}
.pattern-morning .top .head {
  flex-direction: column;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.pattern-morning .top .head::before {
  background-color: #C0994E;
  content: "";
  display: block;
  width: 1px;
  height: 120px;
}
@media (min-width: 1024px) {
  .pattern-morning .top .head::before {
    height: 160px;
  }
}
.pattern-morning .top .head .wp-block-heading {
  font-size: 20px;
  padding-left: 0.5rem;
  margin-top: -1.5em;
  margin-bottom: 1.5em;
}
.pattern-morning .top .head p:not(:last-of-type) {
  margin-bottom: 1em;
}
.pattern-morning .bottom .left {
  aspect-ratio: 5/3;
  display: block;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.pattern-morning .bottom .left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pattern-morning .bottom .right {
  display: flex;
  padding: 2rem;
  padding-top: 0;
  padding-bottom: 64px;
  flex-direction: column;
  gap: 12px;
  background-color: #EFEFEF;
  position: relative;
  position: relative;
}
.pattern-morning .bottom .right::after {
  content: "";
  display: block;
  background: url(assets/ornaments/stain_meal2.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 3vw;
  left: -3vw;
  width: 25vw;
  height: 20vw;
}
@media (min-width: 1024px) {
  .pattern-morning .bottom .right::after {
    width: 15vw;
    height: 12vw;
  }
}
.pattern-morning .bottom .right .wp-block-heading {
  font-size: 20px;
  padding-left: 0.5rem;
  margin-top: -1.5em;
}
.pattern-morning .bottom .right .head {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 1em;
}
.pattern-morning .bottom .right .head::before {
  background-color: #C0994E;
  content: "";
  display: block;
  width: 1px;
  height: 120px;
}
@media (min-width: 1024px) {
  .pattern-morning .bottom .right .head::before {
    height: 160px;
  }
}
.pattern-morning .bottom .right .head p {
  color: #C0994E;
}
@media (min-width: 1024px) {
  .pattern-morning .bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .pattern-morning .bottom .left, .pattern-morning .bottom .right {
    grid-column: span 1;
  }
  .pattern-morning .bottom .right {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .pattern-morning .bottom .left {
    aspect-ratio: auto;
  }
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

#top_slider {
  width: 100%;
  height: 100vh;
}
#top_slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease-out;
}
#top_slider .swiper-slide-active img {
  transform: scale(1.02);
}

.slider_with_thumbs {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .slider_with_thumbs {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .slider_with_thumbs {
    padding-left: 0;
    padding-right: 0;
  }
}
.slider_with_thumbs .swiper:not(.swiper-thumbs) .swiper-slide {
  aspect-ratio: 16/9;
  position: relative;
}
@media (min-width: 1024px) {
  .slider_with_thumbs .swiper:not(.swiper-thumbs) .swiper-slide {
    aspect-ratio: 16/7;
  }
}
.slider_with_thumbs .swiper:not(.swiper-thumbs) .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider_with_thumbs .swiper:not(.swiper-thumbs) .swiper-slide .slide-title {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: #212F39;
  color: #EFEFEF;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.slider_with_thumbs .swiper-thumbs {
  margin-top: 10px;
}
.slider_with_thumbs .swiper-thumbs .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .slider_with_thumbs .swiper-thumbs .swiper-wrapper {
    justify-content: flex-start;
    width: fit-content;
    margin-left: auto;
  }
}
.slider_with_thumbs .swiper-thumbs .swiper-slide {
  width: 80px;
  flex-shrink: 0;
  aspect-ratio: 3/2;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.slider_with_thumbs .swiper-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 4px;
}
.slider_with_thumbs .swiper-thumbs .swiper-slide:hover {
  opacity: 0.8;
}
.slider_with_thumbs .swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.slider_with_thumbs .swiper-thumbs .swiper-slide.swiper-slide-thumb-active img {
  border-color: #007cba;
}

#to-top {
  position: fixed;
  right: 0;
  z-index: 100;
  bottom: -5.5rem;
  transition: bottom 0.3s ease-in-out;
  cursor: pointer;
}
#to-top.show {
  bottom: 5.5rem;
}
@media (min-width: 1024px) {
  #to-top {
    display: none;
  }
}

#gfoot {
  color: #EFEFEF;
  background-color: #212F39;
  font-size: 16px;
}
#gfoot .reserve-container {
  background: url(assets/ornaments/footer-bg.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
@media (min-width: 1024px) {
  #gfoot .reserve-container {
    height: 200px;
  }
}
#gfoot .reserve-container a {
  display: block;
  width: fit-content;
  position: relative;
  font-size: 24px;
  letter-spacing: 0.05em;
}
#gfoot .reserve-container a:hover {
  text-decoration: underline;
}
#gfoot .reserve-container a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1em;
  margin: auto;
  display: block;
  content: "";
  height: 0.8em;
  width: 0.8em;
  background: url(assets/icons/right.svg) no-repeat center center;
  background-size: contain;
}
#gfoot .inner {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
#gfoot .inner.top {
  padding: 4rem 2rem;
}
@media (min-width: 1024px) {
  #gfoot .inner.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8rem;
  }
  #gfoot .inner.top .r {
    min-width: 24rem;
  }
}
#gfoot .inner.bottom {
  padding: 4rem 2rem 10rem;
}
@media (min-width: 1024px) {
  #gfoot .inner.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#gfoot .logo {
  width: 240px;
  margin-bottom: 8px;
}
#gfoot .address {
  margin-bottom: 2rem;
}
#gfoot .address span {
  display: block;
}
#gfoot .phone .mob {
  font-size: 20px;
}
@media (min-width: 1024px) {
  #gfoot .phone .mob {
    display: none;
  }
}
#gfoot .phone .pc {
  display: none;
}
@media (min-width: 1024px) {
  #gfoot .phone .pc {
    display: block;
  }
}
#gfoot .phone-hours {
  display: block;
  font-size: 14px;
}
#gfoot .email {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid white;
  max-width: 30rem;
  padding: 8px;
  transition: background-color 0.3s ease;
}
#gfoot .email:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#gfoot .email img {
  width: 20px;
  display: block;
}
#gfoot .email span {
  display: block;
}
@media (min-width: 768px) {
  #gfoot .email {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  #gfoot .email {
    margin-left: 0;
  }
}
#gfoot .social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 8rem;
}
#gfoot .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
#gfoot .social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 1024px) {
  #gfoot .social-links {
    margin-bottom: 0;
  }
}
#gfoot .fnav {
  margin-top: 2rem;
}
#gfoot .fnav .menu {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 768px) {
  #gfoot .fnav .menu {
    gap: 12px;
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  #gfoot .fnav .menu {
    justify-content: flex-start;
  }
}
#gfoot .fnav .menu-item {
  border-bottom: 1px solid white;
  display: flex;
  align-items: center;
  width: fit-content;
}
#gfoot .fnav .menu-item::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-left: 12px;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("assets/icons/right.svg");
}

/**
 * Common Page Styles - WordPress Core Block Styles
 */
.page-container .alignwide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.page-container .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.page-container .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.page-container .alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.page-container .alignright {
  float: right;
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.page-container .has-text-align-center {
  text-align: center;
}
.page-container .has-text-align-left {
  text-align: left;
}
.page-container .has-text-align-right {
  text-align: right;
}
.page-container .wp-site-blocks > * {
  margin-top: 0;
  margin-bottom: 0;
}

.page-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 2rem 1rem 5rem;
}
@media (min-width: 768px) {
  .page-container {
    padding: 3rem 2rem 8rem;
  }
}
.page-container .page-title {
  padding-bottom: 1em;
  border-bottom: 1px solid #C0994E;
  margin-top: 10rem;
}
.page-container h1, .page-container h2, .page-container h3, .page-container h4, .page-container h5, .page-container h6 {
  color: #212F39;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .page-container h1, .page-container h2, .page-container h3, .page-container h4, .page-container h5, .page-container h6 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
}
.page-container h1 {
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .page-container h1 {
    font-size: 32px;
  }
}
.page-container h2 {
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .page-container h2 {
    font-size: 24px;
  }
}
.page-container h3 {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .page-container h3 {
    font-size: 20px;
  }
}
.page-container h4, .page-container h5, .page-container h6 {
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .page-container h4, .page-container h5, .page-container h6 {
    font-size: 16px;
  }
}
.page-container .has-huge-font-size {
  font-size: 24px;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .page-container .has-huge-font-size {
    font-size: 32px;
  }
}
.page-container .has-large-font-size {
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .page-container .has-large-font-size {
    font-size: 24px;
  }
}
.page-container .has-medium-font-size {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .page-container .has-medium-font-size {
    font-size: 20px;
  }
}
.page-container p {
  color: #212F39;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .page-container p {
    font-size: 16px;
  }
}
.page-container .wp-block-list {
  color: #212F39;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
@media (min-width: 1024px) {
  .page-container .wp-block-list {
    font-size: 16px;
  }
}
.page-container .wp-block-list li {
  margin-bottom: 0.5rem;
}
.page-container .wp-block-quote {
  border-left: 4px solid #C0994E;
  padding-left: 1rem;
  margin: 2rem 0;
  color: #212F39;
  font-style: italic;
}
.page-container .wp-block-quote cite {
  font-size: 14px;
  color: rgb(70.4, 100.2666666667, 121.6);
}
.page-container .wp-block-button {
  margin: 1rem 0;
}
.page-container .wp-block-button .wp-block-button__link {
  background-color: #C0994E;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
@media (min-width: 1024px) {
  .page-container .wp-block-button .wp-block-button__link {
    font-size: 16px;
  }
}
.page-container .wp-block-button .wp-block-button__link:hover {
  background-color: rgb(161.5125, 125.925, 57.4875);
}
.page-container .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #C0994E;
  border: 2px solid #C0994E;
}
.page-container .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #C0994E;
  color: white;
}
.page-container .wp-block-image {
  margin: 2rem 0;
}
.page-container .wp-block-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-container .wp-block-image figcaption {
  font-size: 14px;
  color: rgb(70.4, 100.2666666667, 121.6);
  text-align: center;
  margin-top: 0.5rem;
}
.page-container .wp-block-image.alignleft {
  float: left;
  margin-right: 1rem;
}
.page-container .wp-block-image.alignright {
  float: right;
  margin-left: 1rem;
}
.page-container .wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-container .wp-block-gallery {
  margin: 2rem 0;
}
.page-container .wp-block-gallery .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.page-container .wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-container .wp-block-cover {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  padding: 2rem;
  background-size: cover;
  background-position: center;
}
.page-container .wp-block-cover .wp-block-cover__inner-container {
  text-align: center;
  color: white;
  z-index: 2;
}
.page-container .wp-block-cover .wp-block-cover__inner-container h1, .page-container .wp-block-cover .wp-block-cover__inner-container h2, .page-container .wp-block-cover .wp-block-cover__inner-container h3, .page-container .wp-block-cover .wp-block-cover__inner-container h4, .page-container .wp-block-cover .wp-block-cover__inner-container h5, .page-container .wp-block-cover .wp-block-cover__inner-container h6, .page-container .wp-block-cover .wp-block-cover__inner-container p {
  color: white;
}
.page-container .wp-block-cover .wp-block-cover__inner-container p {
  font-size: 20px;
}
@media (min-width: 1024px) {
  .page-container .wp-block-cover .wp-block-cover__inner-container p {
    font-size: 24px;
  }
}
.page-container .wp-block-group {
  margin: 2rem 0;
}
.page-container .wp-block-group.has-background {
  padding: 2rem;
}
.page-container .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .page-container .wp-block-columns {
    flex-wrap: nowrap;
  }
}
.page-container .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .page-container .wp-block-columns .wp-block-column {
    flex: 100%;
  }
}
.page-container .wp-block-separator {
  border: none;
  border-top: 2px solid #EFEFEF;
  margin: 3rem auto;
  max-width: 100px;
}
.page-container .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.page-container .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.page-container .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #C0994E;
  font-size: 24px;
  letter-spacing: 1rem;
}
.page-container .wp-block-spacer {
  clear: both;
}
.page-container .wp-block-code {
  background-color: #EFEFEF;
  border: 1px solid rgb(213.5, 213.5, 213.5);
  border-radius: 4px;
  padding: 1rem;
  margin: 1rem 0;
}
.page-container .wp-block-code code {
  font-family: monospace;
  font-size: 14px;
  color: #212F39;
}
.page-container .wp-block-preformatted {
  background-color: #EFEFEF;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 14px;
}
.page-container .wp-block-table {
  margin: 2rem 0;
  overflow-x: auto;
}
.page-container .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.page-container .wp-block-table table th, .page-container .wp-block-table table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #EFEFEF;
}
.page-container .wp-block-table table th {
  background-color: #EFEFEF;
  font-weight: bold;
  color: #212F39;
}
.page-container .wp-block-table table td {
  color: #212F39;
}
.page-container .wp-block-table.is-style-stripes table tbody tr:nth-child(odd) {
  background-color: rgb(251.75, 251.75, 251.75);
}
.page-container .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-container .wp-block-media-text {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .page-container .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    order: 1;
  }
  .page-container .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    order: 2;
  }
}
.page-container .wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: auto;
}
.page-container .wp-block-media-text .wp-block-media-text__content {
  padding: 1rem;
}

/**
 * Blog List Styles
 */
.page-container.index .post-list .wp-block-group {
  margin: 0;
}
.page-container.index .post-list .post-item {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #C0994E;
}
.page-container.index .post-list .post-item time {
  font-size: 14px;
}
.page-container.index .post-list .post-item .wp-block-post-title {
  margin: 0;
}
.page-container.index .wp-block-query-pagination {
  margin: 5rem 0 10rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.page-container.index .wp-block-query-pagination a {
  color: #212F39;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #EFEFEF;
}
.page-container.index .wp-block-query-pagination a:hover {
  background-color: #C0994E;
  color: white;
}
.page-container.index .wp-block-query-pagination .current {
  background-color: #C0994E;
  color: white;
  padding: 0.5rem 1rem;
  border: 1px solid #C0994E;
}

html {
  background-color: #EFEFEF;
  line-height: 2;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-image: url("assets/ornaments/bg.png");
  background-repeat: repeat;
  overflow-x: hidden;
  color: #212F39;
}

a {
  text-decoration: none;
}

.sd_only {
  display: block;
}
@media (min-width: 1024px) {
  .sd_only {
    display: none;
  }
}

.wp-block-cover__background {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.wp-block-cover {
  color: white;
}

.wp-block-heading {
  letter-spacing: 0.1em;
}

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