@charset "UTF-8";
/* ==========================================================
   Common (Variables & Mixins)
========================================================== */
/* Base Style */
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

body {
  background-color: #ffffff;
  color: #666666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: justify;
  text-justify: inter-character;
  word-break: break-all;
  line-break: strict;
  margin: 0;
}

/* Fixed To Top */
.fixed-totop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.fixed-totop.visible {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .fixed-totop {
    width: 60px;
    height: 60px;
  }
  .fixed-totop.is-bottom {
    position: absolute;
    bottom: auto;
    top: 10px;
  }
}
.fixed-totop:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.fixed-totop img {
  width: 100%;
  height: auto;
  display: block;
}

/* section */
.section-ttl {
  color: #a39984;
  font-family: "Urbanist", sans-serif;
  font-size: 60px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .section-ttl {
    font-size: clamp(32px, 12.8vw, 52px);
    margin-bottom: 30px;
  }
}
.section-ttl span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .section-ttl span {
    display: block;
    padding-left: 0;
    font-size: 16px;
    padding-top: 5px;
  }
}

/* container */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  position: relative;
}
.p-news .container {
  max-width: 920px;
}
@media screen and (max-width: 1110px) {
  .container {
    padding: 0 4%;
  }
}
@media screen and (max-width: 920px) {
  .container {
    padding: 0 4%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 7.33vw;
  }
}

/* br */
@media screen and (max-width: 767px) {
  .u-dn-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-dn-pc {
    display: none !important;
  }
}

/* ==========================================================
   Header & Navigation
========================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    background-color: #8c4136;
  }
}
.home .header {
  background-color: transparent;
}
.header.scrolled {
  height: 100px;
  background-color: #8c4136;
}
@media screen and (max-width: 767px) {
  .header.scrolled {
    height: 60px;
  }
}
body:not(.home) .header {
  background-color: #8c4136;
  position: sticky;
}
@media screen and (max-width: 767px) {
  body.is-menu-open .header {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  body.is-menu-open .header .header-logo {
    opacity: 0;
    visibility: hidden;
  }
}
.header-inner {
  height: 100%;
  margin: 0 auto;
  padding: 0 2.083% 0 3.472%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 5.33%;
  }
}
.header-logo img {
  width: clamp(107px, 13.03vw, 187.6px);
  height: auto;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header-logo img:hover {
  opacity: 0.6;
}

/* PC Navigation (global-nav) */
@media screen and (max-width: 767px) {
  .global-nav {
    display: none;
  }
}
.global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(14px, 1.1vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.global-nav li a:hover {
  opacity: 0.6;
}
.global-nav .nav-reserve a {
  max-width: 200px;
  padding: 25px 35px;
  border-radius: 35px;
  border: solid 1px #a39984;
  color: #a39984;
  font-size: 16px;
  letter-spacing: 0.2em;
}

/* ==========================================================
   Mobile Navigation (drawer-nav) & Toggle
========================================================== */
.drawer-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .drawer-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .drawer-nav__inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 75px 18% 0 18%;
  }
  .drawer-nav__logo {
    max-width: 220px;
    margin-bottom: 20px;
  }
  .drawer-nav__logo img {
    width: 100%;
  }
  .drawer-nav__menu {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
  }
  .drawer-nav__menu li a {
    text-decoration: none;
    color: #8c4136;
    font-family: "Urbanist", sans-serif;
    font-size: clamp(13px, 4.27vw, 24px);
    line-height: 2.1;
    letter-spacing: 0.2em;
  }
  .drawer-nav__sns {
    margin-bottom: 30px;
  }
  .drawer-nav__sns-ttl {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    line-height: 2.4;
    letter-spacing: 0.1em;
    color: #8c4136;
    margin-bottom: 10px;
  }
  .drawer-nav__sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
  }
  .drawer-nav__sns ul li:not(:first-child) a {
    pointer-events: none;
    cursor: none;
  }
  .drawer-nav__sns ul li:not(:first-child) a img {
    opacity: 0.5;
  }
  .drawer-nav__sns ul li img {
    width: 22px;
    height: auto;
  }
  .drawer-nav__sns ul li:last-child img {
    width: 28px;
  }
  .drawer-nav__reserve {
    width: 100%;
    max-width: 320px;
  }
  .drawer-nav__reserve a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #8c4136;
    color: #ffffff;
    border-radius: 32px;
    text-decoration: none;
    font-size: clamp(13px, 4.27vw, 24px);
    line-height: 1.25;
    letter-spacing: 0.2em;
    padding: 20px 0;
  }
}

.nav-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .nav-toggle {
    display: block;
    width: 18px;
    height: 13px;
    position: relative;
    background: none;
    border: none;
    z-index: 1001;
    cursor: pointer;
  }
  .nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .nav-toggle span:nth-child(1) {
    top: 0;
  }
  .nav-toggle span:nth-child(2) {
    top: 6px;
  }
  .nav-toggle span:nth-child(3) {
    bottom: 0;
  }
  .nav-toggle.active {
    width: 21px;
    height: 21px;
  }
  .nav-toggle.active span {
    background-color: #8c4136;
  }
  .nav-toggle.active span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}

/* ==========================================================
   Footer
========================================================== */
.footer {
  background-color: #8c4136;
  padding: 130px 5% 50px 5%;
  color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 100px 9.375vw 25px 9.375vw;
  }
}
.footer-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    gap: 10px;
  }
}
.footer-logo img {
  width: 187px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-sns {
    position: absolute;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.footer-sns-ttl {
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer-sns-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer-sns-list li a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-sns-list li a:hover {
  opacity: 0.5;
}
.footer-sns-list li a img {
  width: 25px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 1;
}
.footer-sns-list li a:last-child img {
  width: 30px;
}
.footer-sns-list li img {
  width: 25px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  opacity: 0.5;
}
.footer-sns-list li:last-child img {
  width: 30px;
}
.footer .copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-family: "Urbanist", sans-serif;
}

/* ==========================================================
   TOP
========================================================== */
/* Hero Section ------------------ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 1000px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero {
    height: 130vw;
    min-height: 667px;
  }
}
.hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__bg-inner {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 10s linear;
  transition: -webkit-transform 10s linear;
  transition: transform 10s linear;
  transition: transform 10s linear, -webkit-transform 10s linear;
}
.hero__bg picture, .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .hero__bg picture, .hero__bg img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero .js-fade-up {
  opacity: 0;
  -webkit-transition: opacity 3s ease-out;
  transition: opacity 3s ease-out;
}
.hero.is-animated .hero__bg-inner {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.hero.is-animated .hero__text-wrap.js-fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.hero.is-animated .hero__badge.js-fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.hero__bg-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}
.hero__bg-text img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .hero__bg-text img {
    width: 160%;
    margin-left: -30%;
  }
}
.hero__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .hero__content {
    padding-top: 0;
  }
}
.hero__con {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .hero__con {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding-top: clamp(100px, 38.6vw, 120px);
  }
}
.hero__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .hero__text-wrap {
    width: 100%;
  }
}
.hero__ttl {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(30px, 5.5vw, 70px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.21em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .hero__ttl {
    font-size: clamp(16px, 8vw, 40px);
    margin-bottom: 25px;
  }
}
.hero__catch {
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .hero__catch {
    font-size: clamp(16px, 5.33vw, 30px);
  }
}
.hero__catch span {
  display: block;
  font-size: 0.65em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.07em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .hero__catch span {
    font-size: clamp(13px, 3.47vw, 18px);
    margin-top: 10px;
  }
}
.hero__badge {
  position: absolute;
  top: -25px;
  right: -5.86%;
  width: clamp(160px, 28vw, 270px);
}
@media screen and (max-width: 767px) {
  .hero__badge {
    width: clamp(130px, 42.67vw, 180px);
    position: relative;
    display: block;
    top: auto;
    right: auto;
  }
}
.hero__badge img {
  width: 100%;
  height: auto;
}

/* News Section ----------------------- */
.news {
  background-color: #8c4136;
  padding: 80px 0 60px 0;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 60px 0;
  }
}
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.news-item {
  width: 18%;
  min-width: 160px;
}
.news-item:not(:last-child) {
  margin-right: 9%;
}
@media screen and (max-width: 767px) {
  .news-item {
    width: 100%;
    min-width: auto;
    margin-bottom: 10px;
  }
}
.news-item__link {
  text-decoration: none;
  color: inherit;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.news-item__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .news-item__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
}
.news-item__thumb {
  width: 100%;
  aspect-ratio: 200/120;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .news-item__thumb {
    width: 37.5%;
    min-width: 120px;
    aspect-ratio: 120/120;
    margin-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.news-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .news-item__meta {
    padding-top: 15px;
  }
}
.news-item__date {
  color: #a39984;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .news-item__date {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.news-item__title {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    font-size: 13px;
  }
}
.news {
  /* More Button */
}
.news-btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .news-btn {
    margin-top: 10px;
  }
}
.news-btn .btn-more {
  color: #a39984;
  font-family: "Urbanist", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-size: 18px;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news-btn .btn-more {
    font-size: 14px;
  }
}
.news-btn .btn-more:hover {
  opacity: 0.6;
}
.news-btn .btn-more:hover .btn-more__arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.news-btn .btn-more__arrow {
  width: 16px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .news-btn .btn-more__arrow {
    width: 14px;
  }
}

/* System Section ----------------------- */
.system {
  padding: 80px 0 140px 0;
}
@media screen and (max-width: 767px) {
  .system {
    padding: 60px 0 90px 0;
  }
}
.system-con {
  margin: 45px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .system-con {
    margin-top: 30px;
  }
}
.system-item {
  width: 100%;
  margin-bottom: 1110px;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.system-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .system-item {
    margin-bottom: 20px;
    overflow-x: hidden;
    white-space: normal;
  }
}
@media screen and (max-width: 1024px) {
  .system-item__wrap {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
  }
}
.system-item__note {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .system-item__note {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}
.system-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .system-img {
    width: auto;
    max-width: 1110px;
    min-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .system-img {
    width: 100%;
    min-width: 100%;
  }
}

/* Access Section ----------------------- */
.access {
  padding: 80px 0 140px 0;
  background-color: #f6f0ef;
}
@media screen and (max-width: 767px) {
  .access {
    padding: 60px 0 80px 0;
  }
}
.access-con {
  margin: 45px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .access-con {
    margin-top: 40px;
  }
}
.access {
  /* Google Map */
}
.access-map {
  width: 100%;
  aspect-ratio: 1110/600;
}
@media screen and (max-width: 767px) {
  .access-map {
    aspect-ratio: 320/240;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
}
@media screen and (max-width: 767px) {
  .access-map iframe {
    aspect-ratio: 1/1;
    border-radius: 10px 10px 0 0;
  }
}
.access {
  /* Contact Block (Tel & Reserve) */
}
.access-contact {
  width: 100%;
  padding: 70px 0 40px 0;
  background-color: #8c4136;
}
@media screen and (max-width: 767px) {
  .access-contact {
    padding: 50px 0 5px 0;
  }
}
.access-contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .access-contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
    padding: 0 9.375vw;
  }
}
.access-contact__block {
  width: 50%;
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .access-contact__block {
    width: 100%;
    min-height: auto;
    margin-bottom: 30px;
  }
}
.access-contact__block:last-child {
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .access-contact__block:last-child {
    border-left: none;
    border-top: 1px solid #ffffff;
    padding-top: 25px;
  }
}
.access-contact__tel {
  line-height: 0;
}
.access-contact__tel img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .access-contact__tel img {
    max-width: auto;
  }
}
.access {
  /* Reserve Text & Button */
}
.access-reserve__txt {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .access-reserve__txt {
    font-size: 15px;
    letter-spacing: 0.2em;
  }
}
.access-reserve__btn {
  text-align: center;
  margin-top: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.access-reserve__btn:hover {
  opacity: 0.8;
}
.access-reserve__btn img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access-reserve__btn img {
    width: 100%;
  }
}
.access {
  /* Info (Address & Hours) */
}
.access-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 70px 0;
  width: 100%;
  background-color: #1f1f1f;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 880px) {
  .access-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .access-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 30px 9.375vw 40px 9.375vw;
    border-radius: 0 0 10px 10px;
  }
}
.access-info__add {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .access-info__add {
    font-size: 14px;
  }
}
.access-info__hours {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .access-info__hours {
    font-size: 13px;
  }
}

/* Coming Soon Button */
/* ==========================================================
   NEWS一覧 home.php
========================================================== */
/* page-hero ----------------------- */
.page-hero {
  position: relative;
  background-color: #8c4136;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 90px 0 50px 0;
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding: 50px 0 10px 0;
  }
}
.page-hero .page-hero-title {
  font-family: font-en;
  font-size: 45px;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #a39984;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-hero {
    height: 160px;
  }
  .page-hero .page-hero-title {
    font-size: 24px;
  }
}

/* archive ----------------------- */
.archive-section {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .archive-section {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}
.archive {
  /* filter */
}
.archive-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  list-style: none;
  margin: 0 auto 20px;
  padding: 0;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width: 767px) {
  .archive-filter {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
    max-width: 340px;
    margin-bottom: 30px;
  }
}
.archive-filter li {
  position: relative;
  width: 185px;
}
@media screen and (max-width: 767px) {
  .archive-filter li {
    width: 48%;
    border-bottom: 1px solid #f0f0f0;
  }
}
.archive-filter li a {
  display: block;
  padding: 0 0 5px;
  text-decoration: none;
  font-family: font-en;
  font-size: clamp(14px, 1.636vw, 20px);
  line-height: 1.67;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .archive-filter li a {
    padding: 12px 0 4px;
    font-size: 13px;
    text-align: left;
  }
}
.archive-filter li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
  background-color: #a39984;
  width: 0;
  left: auto;
  right: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
@media screen and (max-width: 767px) {
  .archive-filter li a::after {
    bottom: 0;
  }
}
.archive-filter li a:hover {
  color: #a39984;
}
.archive-filter li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.archive-filter li a:not(:hover)::after {
  left: auto;
  right: 0;
  width: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.archive-filter li.active a {
  color: #a39984;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .archive-filter li.active a {
    background-color: #fcfcfc;
  }
}
.archive-filter li.active a::after {
  width: 100%;
  left: 0 !important;
  right: auto !important;
}
.archive {
  /* list */
}
.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-list__item {
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-list__item:last-child {
    border-bottom: none;
  }
}
.archive-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.archive-list__link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #a39984;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.archive-list__link:hover {
  opacity: 0.7;
}
.archive-list__link:hover::after {
  width: 100%;
}
.archive-list__link:hover .archive-list__arrow {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}
@media screen and (min-width: 768px) {
  .archive-list__link {
    padding: 40px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .archive-list__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 30px;
  }
}
.archive-list__thumb-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.archive-list__thumb-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .archive-list__thumb-wrap {
    width: 300px;
    aspect-ratio: 300/185;
  }
}
@media screen and (max-width: 767px) {
  .archive-list__thumb-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    margin-bottom: 20px;
  }
}
.archive-list__meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (min-width: 768px) {
  .archive-list__meta {
    padding-left: 6.36%;
  }
}
.archive-list__meta .meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.archive-list__meta--date {
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #a39984;
}
.archive-list__meta--cat {
  font-family: "Urbanist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #a39984;
  border: 1px solid #a39984;
  border-radius: 14px;
  padding: 0 12px;
}
.archive-list__title {
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .archive-list__title {
    max-width: 450px;
  }
}
.archive-list__arrow {
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.archive-list__arrow img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .archive-list__arrow {
    display: none;
  }
}

/* archive ----------------------- */
.p-pagination {
  margin: 75px 0 0;
}
@media screen and (max-width: 767px) {
  .p-pagination {
    margin-top: 40px;
  }
}
.p-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-pagination .nav-links {
    gap: 10px;
  }
}
.p-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-family: "Urbanist", sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-pagination .page-numbers:not(.prev):not(.next):not(.dots) {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #a39984;
  font-size: 17px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-pagination .page-numbers:not(.prev):not(.next):not(.dots) {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}
.p-pagination .page-numbers:not(.prev):not(.next):not(.dots).current {
  background-color: #a39984;
  color: #fff;
}
.p-pagination .page-numbers:not(.prev):not(.next):not(.dots):hover:not(.current) {
  background-color: rgba(163, 153, 132, 0.1);
}
.p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border: none;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
    font-size: 11px;
  }
}
.p-pagination .page-numbers.prev:hover, .p-pagination .page-numbers.next:hover {
  opacity: 0.7;
}
.p-pagination .page-numbers.prev::before {
  content: "";
  display: inline-block;
  width: 5.35px;
  height: 8.73px;
  background-image: url("../images/common/arrow_prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-pagination .page-numbers.prev::before {
    width: 4.4004px;
    height: 6.9519px;
    margin-right: 5px;
    margin-bottom: 2px;
  }
}
.p-pagination .page-numbers.next::after {
  content: "";
  display: inline-block;
  width: 5.35px;
  height: 8.73px;
  background-image: url("../images/common/arrow_next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-pagination .page-numbers.next::after {
    width: 4.4004px;
    height: 6.9519px;
    margin-left: 5px;
    margin-bottom: 2px;
  }
}
.p-pagination .page-numbers.dots {
  border: none;
  width: auto;
}

/* ==========================================================
   NEWS single.php
========================================================== */
.p-news {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding: 60px 0;
  }
}
.p-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.p-news__category {
  border: 1px solid #a39984;
  border-radius: 20px;
  padding: 0 1.5em;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(12px, 1.63vw, 18px);
  letter-spacing: 0.05em;
  color: #a39984;
}
.p-news__date {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(14px, 1.739vw, 18px);
  letter-spacing: 0.1em;
  color: #a39984;
}
.p-news__title {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding-bottom: 1.3em;
  margin: 1em 0 2em;
  border-bottom: 1px solid #f2f2f2;
}
.p-news__thumbnail img {
  width: 100%;
  height: auto;
}
.p-news__content p {
  font-size: clamp(14px, 1.739vw, 18px);
  line-height: 2.125;
  margin-bottom: 2em;
}
.p-news__content h2, .p-news__content h3, .p-news__content h4, .p-news__content h5, .p-news__content h6, .p-news__content .is-style-style-h7 {
  clear: both;
}
.p-news__content h2 {
  font-size: clamp(17px, 2.17vw, 20px);
  font-weight: 700;
  border-bottom: 1px solid #666666;
  padding-bottom: 0.5em;
  margin: 2.5em 0 1.5em;
}
@media screen and (max-width: 767px) {
  .p-news__content h2 {
    padding-bottom: 5px;
  }
}
.p-news__content h3 {
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  padding: 15px 0;
  margin: 2em 0 1em;
}
@media screen and (max-width: 767px) {
  .p-news__content h3 {
    padding: 5px 0;
  }
}
.p-news__content h4 {
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  border-left: 4px solid #8c4136;
  padding-left: 30px;
  margin: 2em 0 1em;
}
@media screen and (max-width: 767px) {
  .p-news__content h4 {
    padding-left: 20px;
  }
}
.p-news__content h5 {
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  background-color: #f6f0ef;
  border-left: 3px solid #8c4136;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .p-news__content h5 {
    padding: 5px 20px;
  }
}
.p-news__content h6 {
  font-size: clamp(17px, 5vw, 20px);
  font-weight: 700;
  background-color: #8c4136;
  color: #ffffff;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .p-news__content h6 {
    padding: 5px 25px;
  }
}
.p-news__content .is-style-style-h7 {
  font-size: clamp(17px, 5vw, 20px);
  background-color: transparent;
  border: 1px solid #8c4136;
  color: #8c4136;
  padding: 10px 30px;
}
@media screen and (max-width: 767px) {
  .p-news__content .is-style-style-h7 {
    padding: 5px 25px;
  }
}
.p-news__content figure {
  margin: 0 0 2em 0 !important;
}
.p-news__content figure img {
  width: 100%;
  height: auto;
}
.p-news__content .wp-block-image .alignleft {
  margin: 0.7em 1.5em 0.5em 0 !important;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-image .alignleft {
    margin: 0 0 1.5em 0 !important;
    width: 100%;
  }
}
.p-news__content .wp-block-media-text {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-media-text {
    display: block;
  }
}
.p-news__content .wp-block-media-text__content {
  padding: 0 0 0 1.5em;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-media-text__content {
    padding: 20px 0 0 0 !important;
  }
}
.p-news__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 1.5em 0 0 !important;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 0 !important;
  }
}
.p-news__content .wp-block-media-text__media {
  padding: 0 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-media-text__media {
    padding: 0;
    width: 100%;
  }
}
.p-news__content .wp-block-gallery {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em !important;
  margin: 2em 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px !important;
  }
}
.p-news__content .wp-block-gallery .wp-block-image {
  margin: 0 !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-news__content .wp-block-gallery .wp-block-image {
    width: 100% !important;
  }
}
.p-news__content .wp-block-gallery .wp-block-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.p-news__content .wp-block-separator {
  border-top: 1px solid #ccc;
  padding: 5px 0;
}
.p-news__footer {
  margin-top: 90px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-news__footer {
    margin-top: 55px;
  }
}
.p-news__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 15px;
  margin-bottom: 30px;
}
.p-news__share-label {
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #666666;
}
.p-news__share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
}
.p-news__share-list a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-news__share-list a:hover {
  opacity: 0.6;
}
.p-news__share-list a img {
  width: auto;
  height: 17px;
  vertical-align: middle;
}
.p-news__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 40px;
  margin-bottom: 50px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.p-news__nav a {
  color: #666666;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.p-news__nav a:hover {
  opacity: 0.6;
}
.p-news__nav-prev a::before {
  content: "";
  display: block;
  width: 5.3485px;
  height: 8.7297px;
  background-image: url("../images/common/arrow_prev.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-news__nav-next a::after {
  content: "";
  display: block;
  width: 5.3485px;
  height: 8.7297px;
  background-image: url("../images/common/arrow_next.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-news__nav-prev, .p-news__nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-news__nav-next {
  text-align: right;
}
.p-news__back {
  text-align: right;
  margin-top: 40px;
}
.p-news__back .btn-back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 150px;
  padding: 8px 20px;
  border: 1px solid #a39984;
  border-radius: 22px;
  color: #a39984;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-news__back .btn-back {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-news__back .btn-back .ico-arrow {
  width: 15px;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-news__back .btn-back .ico-arrow {
    position: absolute;
    right: 50px;
  }
}
.p-news__back .btn-back:hover {
  background-color: #a39984;
  color: #fff;
}
.p-news__back .btn-back:hover .ico-arrow {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* ==========================================================
   Modules
========================================================== */
.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reserve-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.reserve-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.reserve-modal__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 90%;
  background: #ffffff;
  padding: 80px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reserve-modal__content {
    width: 89.3%;
    padding: 100px 40px 70px;
  }
}
.reserve-modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .reserve-modal__close {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
}
.reserve-modal__close::before, .reserve-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 1px;
  background: #8c4136;
}
@media screen and (max-width: 767px) {
  .reserve-modal__close::before, .reserve-modal__close::after {
    width: 40px;
  }
}
.reserve-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.reserve-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.reserve-modal__ttl {
  font-size: clamp(20px, 2.67vw, 24px);
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #8c4136;
}
.reserve-modal__sub {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.2em;
  color: #8c4136;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reserve-modal__sub {
    margin-bottom: 20px;
  }
}
.reserve-modal__btns {
  font-size: clamp(17px, 2.22vw, 20px);
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #ffffff;
  max-width: 480px;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .reserve-modal__btns {
    max-width: 380px;
    margin-bottom: 0;
    letter-spacing: 0.1em;
  }
}
.reserve-modal__btns .reserve-modal__row {
  font-size: clamp(15px, 2vw, 18px);
}
.reserve-modal__btns .reserve-modal__row .reserve-modal__label {
  font-size: clamp(12px, 1.56vw, 14px);
}
.reserve-modal__btns .reserve-modal__row .reserve-btn {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .reserve-modal__btns .reserve-modal__row .reserve-btn {
    padding: 17px;
  }
}
@media screen and (max-width: 767px) {
  .reserve-modal__section {
    margin-bottom: 15px;
  }
}
.reserve-modal__block {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .reserve-modal__block {
    margin-bottom: 10px;
  }
}
.reserve-modal__label {
  font-size: clamp(14px, 1.78vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #8c4136;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .reserve-modal__label {
    margin-bottom: 10px;
  }
}
.reserve-modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .reserve-modal__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.reserve-modal__row .reserve-modal__block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.reserve-modal__note {
  font-size: clamp(13px, 1.67vw, 15px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #8c4136;
  text-align: center;
  padding-top: 10px;
}
.reserve-modal__notice {
  font-size: clamp(12px, 1.56vw, 14px);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #8c4136;
  text-align: center;
  margin-top: 5px;
}

.reserve-btn {
  display: block;
  background: #8c4136;
  color: #ffffff;
  padding: 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .reserve-btn {
    padding: 22px;
  }
}
.reserve-btn:hover {
  opacity: 0.8;
}
/*# sourceMappingURL=main.css.map */